[llvm] r317289 - Reland "Add feature to determine if host architecture is 64-bit in llvm-lit"

Jake Ehrlich via llvm-commits llvm-commits at lists.llvm.org
Thu Nov 2 16:45:51 PDT 2017


Author: jakehehrlich
Date: Thu Nov  2 16:45:51 2017
New Revision: 317289

URL: http://llvm.org/viewvc/llvm-project?rev=317289&view=rev
Log:
Reland "Add feature to determine if host architecture is 64-bit in llvm-lit"

A member of config was removed in this patch which resulted in errors I
didn't expect. Removing config.host_arch will take more work some I'm
readding that field.

Differential Revision: https://reviews.llvm.org/D39465

Modified:
    llvm/trunk/test/lit.site.cfg.py.in

Modified: llvm/trunk/test/lit.site.cfg.py.in
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/lit.site.cfg.py.in?rev=317289&r1=317288&r2=317289&view=diff
==============================================================================
--- llvm/trunk/test/lit.site.cfg.py.in (original)
+++ llvm/trunk/test/lit.site.cfg.py.in Thu Nov  2 16:45:51 2017
@@ -42,6 +42,7 @@ config.build_shared_libs = @BUILD_SHARED
 config.link_llvm_dylib = @LLVM_LINK_LLVM_DYLIB@
 config.llvm_libxml2_enabled = "@LLVM_LIBXML2_ENABLED@"
 config.llvm_host_triple = '@LLVM_HOST_TRIPLE@'
+config.host_arch = "@HOST_ARCH@"
 
 # Support substitution of the tools_dir with user parameters. This is
 # used when we can't determine the tool dir at configuration time.




More information about the llvm-commits mailing list