diff options
author | dim <dim@FreeBSD.org> | 2013-12-30 20:15:46 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2013-12-30 20:15:46 +0000 |
commit | 5fce04bd49f3f5cc0cdad8752ecca4dd5682a21b (patch) | |
tree | 0dad04d1ac565d14d7c55b2a8173f9128cc6509e /sys/boot/usb/Makefile | |
parent | 8a773bc13424e791cea0f4c0136a48f9667e87c5 (diff) | |
download | FreeBSD-src-5fce04bd49f3f5cc0cdad8752ecca4dd5682a21b.zip FreeBSD-src-5fce04bd49f3f5cc0cdad8752ecca4dd5682a21b.tar.gz |
MFC r257532 (by adrian):
Fix this build for clang.
MFC r259730:
To avoid having to explicitly test COMPILER_TYPE for setting
clang-specific or gcc-specific flags, introduce the following new
variables for use in Makefiles:
CFLAGS.clang
CFLAGS.gcc
CXXFLAGS.clang
CXXFLAGS.gcc
In bsd.sys.mk, these get appended to the regular CFLAGS or CXXFLAGS for
the right compiler.
MFC r259913:
For libstand and sys/boot, split off gcc-only flags into CFLAGS.gcc.
MFC r259927:
Fix pc98 build, by also forcing COMPILER_TYPE in sys/boot/pc98/boot2's
Makefile.
Pointy hat to: dim
Diffstat (limited to 'sys/boot/usb/Makefile')
-rw-r--r-- | sys/boot/usb/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/usb/Makefile b/sys/boot/usb/Makefile index 3ed12c8..3e8c83e 100644 --- a/sys/boot/usb/Makefile +++ b/sys/boot/usb/Makefile @@ -53,7 +53,7 @@ CFLAGS+= -g .if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" CFLAGS+= -march=i386 -CFLAGS+= -mpreferred-stack-boundary=2 +CFLAGS.gcc+= -mpreferred-stack-boundary=2 .endif .if ${MACHINE_CPUARCH} == "amd64" CFLAGS+= -m32 |