Skip to content
Snippets Groups Projects
Commit a0889a8c authored by Rafael Espindola's avatar Rafael Espindola
Browse files

Use -no-integrated-as only on ARM. The X86 and X86-64 integrated as have been

the default for clang for some time now and can handle compiler-rt.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@151367 91177308-0d34-0410-b5e6-96231b3b80d8
parent 0fd7f4db
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,10 @@ PROJ_resources_lib := $(PROJ_resources)/lib
COMPILERRT_SRC_ROOT := $(LLVM_SRC_ROOT)/projects/compiler-rt
# Additional flags to pass to Clang.
CLANG_CCFLAGS := -no-integrated-as
CLANG_CCFLAGS :=
ifeq ($(ARCH), arm)
CLANG_CCFLAGS += -no-integrated-as
endif
# We don't currently support building runtime libraries when we are
# cross-compiling. The issue is that we really want to be set up so that the
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment