aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/clang/clang
diff options
context:
space:
mode:
authorAndrew Turner <andrew@FreeBSD.org>2016-01-14 19:00:13 +0000
committerAndrew Turner <andrew@FreeBSD.org>2016-01-14 19:00:13 +0000
commitc455b924834e5f38a33343dc45b8763dcc36447e (patch)
tree6a0d9133c26763c6364bec3b6108bc5962cd06ee /usr.bin/clang/clang
parent445a2b570ee971588bfc2a8161a9a9f4c5eaf1e4 (diff)
downloadsrc-c455b924834e5f38a33343dc45b8763dcc36447e.tar.gz
src-c455b924834e5f38a33343dc45b8763dcc36447e.zip
Set -mlong-calls where needed to get a static clang and lldb 3.8.0
linking. These are too large for a branch instruction to branch from an earlier point in the code to somewhere later. This will also allow these to be build with Thumb-2 when we get this infrastructure. Reviewed by: dim Differential Revision: https://reviews.freebsd.org/D4855
Notes
Notes: svn path=/head/; revision=294031
Diffstat (limited to 'usr.bin/clang/clang')
-rw-r--r--usr.bin/clang/clang/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/usr.bin/clang/clang/Makefile b/usr.bin/clang/clang/Makefile
index 1489a5e2d327..92ed6e47be22 100644
--- a/usr.bin/clang/clang/Makefile
+++ b/usr.bin/clang/clang/Makefile
@@ -11,6 +11,10 @@ SRCS= cc1_main.cpp \
.if ${MK_SHARED_TOOLCHAIN} == "no"
NO_SHARED?= yes
+
+.if ${MACHINE_CPUARCH} == "arm"
+CFLAGS+= -mlong-calls
+.endif
.endif
LINKS= ${BINDIR}/clang ${BINDIR}/clang++ \