diff options
author | Stephen Hines <srhines@google.com> | 2014-11-04 16:37:08 -0800 |
---|---|---|
committer | Stephen Hines <srhines@google.com> | 2014-11-04 16:48:05 -0800 |
commit | f514d2c2b4a722b311d2f2c2a8762d7a83d42c00 (patch) | |
tree | 4c92842cfc07cb727a9cd93a018831da9ebf7c6c | |
parent | 3160f5018b58edd927dc288630f115b8f910f8f3 (diff) | |
download | external_llvm-f514d2c2b4a722b311d2f2c2a8762d7a83d42c00.zip external_llvm-f514d2c2b4a722b311d2f2c2a8762d7a83d42c00.tar.gz external_llvm-f514d2c2b4a722b311d2f2c2a8762d7a83d42c00.tar.bz2 |
Enable 64-bit builds of all host LLVM tools.
Bug: 10653601
Bug: 13751317
We need to manually specify the same libgcc_s that is linked with all other
host tools, because the libc++ build rules explicitly pass -nodefaultlibs.
Change-Id: I09e7d2894e2be90ac81223b523688973fcb7de9a
-rw-r--r-- | llvm-host-build.mk | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm-host-build.mk b/llvm-host-build.mk index 109bb2e..f6aa865 100644 --- a/llvm-host-build.mk +++ b/llvm-host-build.mk @@ -53,13 +53,12 @@ LOCAL_C_INCLUDES := \ # Add on ncurses to have support for terminfo ifneq ($(HOST_OS),windows) -LOCAL_LDLIBS += -lncurses +LOCAL_LDLIBS += -lncurses \ + -lgcc_s endif LOCAL_IS_HOST_MODULE := true -LOCAL_32_BIT_ONLY := true - ########################################################### ## Commands for running tblgen to compile a td file ########################################################### |