diff options
author | jhibbits <jhibbits@FreeBSD.org> | 2017-04-01 19:27:06 +0000 |
---|---|---|
committer | jhibbits <jhibbits@FreeBSD.org> | 2017-04-01 19:27:06 +0000 |
commit | 0f139c1ee40c96df29a9a8531aeb56704117439e (patch) | |
tree | b73199a18264d2aa63323464755fbd84d25d7c21 /lib | |
parent | 16386726ac0fa090573e9c120df08d1001eabbd8 (diff) | |
download | FreeBSD-src-0f139c1ee40c96df29a9a8531aeb56704117439e.zip FreeBSD-src-0f139c1ee40c96df29a9a8531aeb56704117439e.tar.gz |
MFC r310146,r311912,r312369,r312617,r312614,r312659,r312974,r312977,r313005,r314826:
A series of Clang-related powerpc commits
r310146:
Use the right bitwise OR operation for clearing single-step at trap time.
r311912:
Force all TOC references in asm to include '@toc'
r312369:
Use the explicit expanded form of cmp.
r312617:
Hide the 'MOREARGS' macro, it conflicts with contrib code, and is only used
in one file.
r312614:
Don't pass -Wa,-many through clang, the integrated as doesn't support it.
r312659:
Avoid using non-zero argument for __builtin_frame_address().
r312974:
Add a INTR_TRIG_INVALID, and use it in the powerpc interrupt code.
r312977:
Force the setting of bit 7 in the sysmouse packet byte 1 to be unsigned.
r313005:
Update CFLAGS for clang compatibility
r314826:
Clang in base now supports -mlongcall, so remove this hack
Diffstat (limited to 'lib')
-rw-r--r-- | lib/csu/powerpc64/Makefile | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/csu/powerpc64/Makefile b/lib/csu/powerpc64/Makefile index 104ab20..c560a2f 100644 --- a/lib/csu/powerpc64/Makefile +++ b/lib/csu/powerpc64/Makefile @@ -9,16 +9,6 @@ CFLAGS+= -I${.CURDIR:H}/common \ -I${SRCTOP}/lib/libc/include \ -mlongcall -# XXX: See the log for r232932 as to why the above -mlongcall is needed. Since -# clang doesn't support -mlongcall, and testing shows a clang linked with a -# clang-built csu segfaults, this must currently be compiled with gcc. Once -# clang supports -mlongcall, or we get a fixed ld, this can be revisited. -.include <bsd.compiler.mk> -.if ${COMPILER_TYPE} != "gcc" -CC:= gcc -COMPILER_TYPE:= gcc -.endif - FILES= ${OBJS} FILESMODE= ${LIBMODE} FILESOWN= ${LIBOWN} |