mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-10 18:41:17 +02:00
13 lines
339 B
Makefile
13 lines
339 B
Makefile
# $FreeBSD: head/Mk/bsd.ssp.mk 499897 2019-04-24 19:15:05Z jbeich $
|
|
# SSP Support
|
|
|
|
SSP_Include_MAINTAINER= portmgr@FreeBSD.org
|
|
|
|
.if !defined(SSP_UNSAFE) && \
|
|
(${MACHINE} != "mips")
|
|
# Overridable as a user may want to use -fstack-protector-all
|
|
SSP_CFLAGS?= -fstack-protector-strong
|
|
CFLAGS+= ${SSP_CFLAGS}
|
|
LDFLAGS+= ${SSP_CFLAGS}
|
|
.endif
|