mirror of
https://github.com/opnsense/src.git
synced 2026-02-11 23:06:12 -05:00
As in the gnu/lib/libgcc Makefile:
libgcc is linked in last and thus cannot depend on ssp
symbols coming from earlier libraries. Disable stack protection
for this library.
Reviewed by: dim
Sponsored by: The FreeBSD Foundation
13 lines
143 B
Makefile
13 lines
143 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE= clibs
|
|
LIB= gcc_eh
|
|
NO_PIC=
|
|
MK_SSP= no
|
|
WARNS?= 2
|
|
|
|
.include "Makefile.inc"
|
|
|
|
.include <bsd.lib.mk>
|