mirror of
https://github.com/opnsense/src.git
synced 2026-03-01 12:51:07 -05:00
ARM EABI support is disabled by default and can be enabled by setting WITH_ARM_EABI when building, however only the kernel-toolchain target will work with this flag until the rest of the support is added.
19 lines
287 B
Makefile
19 lines
287 B
Makefile
# $FreeBSD$
|
|
|
|
NO_MAN=
|
|
.include <bsd.own.mk>
|
|
|
|
.include "../Makefile.inc"
|
|
.include "../Makefile.fe"
|
|
|
|
.PATH: ${GCCLIB}/libiberty
|
|
|
|
PROG= c++filt
|
|
SRCS= cp-demangle.c
|
|
|
|
CFLAGS+= -DSTANDALONE_DEMANGLER -DVERSION=\"$(GCC_VERSION)\"
|
|
|
|
DPADD= ${LIBIBERTY}
|
|
LDADD= ${LIBIBERTY}
|
|
|
|
.include <bsd.prog.mk>
|