mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-20 11:11:24 +00:00
9cac79b378
only release, no new features have been added. Please note that this version requires C++11 support to build; see UPDATING for more information. Release notes for llvm and clang can be found here: <http://llvm.org/releases/3.5.1/docs/ReleaseNotes.html> <http://llvm.org/releases/3.5.1/tools/clang/docs/ReleaseNotes.html> MFC after: 1 month X-MFC-With: 276479
26 lines
454 B
Makefile
26 lines
454 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
CRTARCH=${MACHINE_CPUARCH:C/amd64/x86_64/}
|
|
CRTSRC=${.CURDIR}/../../../contrib/compiler-rt
|
|
|
|
LIBDIR=/usr/lib/clang/3.5.1/lib/freebsd
|
|
|
|
NO_PIC=
|
|
MK_PROFILE=no
|
|
|
|
WARNS?=0
|
|
|
|
SSP_CFLAGS=
|
|
CFLAGS+=-DNDEBUG
|
|
CFLAGS+=${PICFLAG}
|
|
CFLAGS+=-fno-builtin
|
|
CFLAGS+=-fno-exceptions
|
|
CFLAGS+=-fno-rtti
|
|
CFLAGS+=-fno-stack-protector
|
|
CFLAGS+=-funwind-tables
|
|
CFLAGS+=-fvisibility-inlines-hidden
|
|
CFLAGS+=-fvisibility=hidden
|
|
CFLAGS+=-I${CRTSRC}/lib
|