aboutsummaryrefslogtreecommitdiffstats
path: root/build_scripts
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2021-01-08 17:35:24 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2021-01-11 16:02:10 +0000
commit5705cf87480f29e4e8f72bd47aaabb04466a7582 (patch)
tree35cdff8f8434c7a6e67527a13c956a48785b6f94 /build_scripts
parent4de06c634f451e96b47f31324e34086b0e3a0d62 (diff)
Revert "Replace _ARCH_ by 64/32bit in LLVM_INSTALL_DIR"
This reverts commit c3fc507d3b2a502273bd92472e1e7aa459c2d13e. 29be13664858cdb7ed7cbc02d6ad496bf57a9bbd moves this handling to the coin scripts, where it belongs. Some functionality was already removed by e44e21f14d8b10b1832c5db5459bf26f287ab6e8. Task-number: PYSIDE-431 Change-Id: I7474ea17230e484a53019eb7575d3dd9839e9263 Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'build_scripts')
-rw-r--r--build_scripts/utils.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/build_scripts/utils.py b/build_scripts/utils.py
index 0cf6f6676..c2435fa17 100644
--- a/build_scripts/utils.py
+++ b/build_scripts/utils.py
@@ -687,9 +687,6 @@ def detect_clang():
clang_dir = os.environ.get(source, None)
if not clang_dir:
raise OSError("clang not found")
- if clang_dir:
- arch = '64' if sys.maxsize > 2 ** 31 - 1 else '32'
- clang_dir = clang_dir.replace('_ARCH_', arch)
return (clang_dir, source)