From: NAKAMURA Takumi Date: Sat, 4 Nov 2017 06:55:55 +0000 (+0000) Subject: llvm/test/lit.cfg.py: Don't set the feature "llvm-64-bits" if -m32 is specified. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=448a3e57854b18d666e8851d0d7be09c293f6cd4;p=platform%2Fupstream%2Fllvm.git llvm/test/lit.cfg.py: Don't set the feature "llvm-64-bits" if -m32 is specified. FIXME: LLVM_BUILD_32_BITS should modify host_triple. llvm-svn: 317404 --- diff --git a/llvm/test/lit.cfg.py b/llvm/test/lit.cfg.py index 57dc1f0..73a3b4b 100644 --- a/llvm/test/lit.cfg.py +++ b/llvm/test/lit.cfg.py @@ -169,7 +169,8 @@ for arch in config.targets_to_build.split(): # Features known_arches = ["x86_64", "mips64", "ppc64", "aarch64"] -if any(config.llvm_host_triple.startswith(x) for x in known_arches): +if (config.host_ldflags.find("-m32") < 0 + and any(config.llvm_host_triple.startswith(x) for x in known_arches)): config.available_features.add("llvm-64-bits") # Others/can-execute.txt