blob: cd15aae8c45b411a7b1c8cb7e052beea965eacbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $NetBSD: hacks.mk,v 1.9 2020/08/14 08:00:57 hauke Exp $
.if !defined(XEMACS_HACKS_MK)
XEMACS_HACKS_MK= defined
.include "../../mk/compiler.mk"
### Position-independent code does not rhyme well with dumped emacsen.
###
.if !empty(CC_VERSION:Mgcc-[6789].*) || !empty(CC_VERSION:Mgcc-[1-9][0-9].*)
PKG_HACKS+= disable-gcc-pie
CFLAGS+= -no-pie
.endif
.if !empty(CC_VERSION:Mclang-*)
PKG_HACKS+= disable-clang-pie
CFLAGS+= -fno-pie
.endif
.endif # XEMACS_HACKS_MK
|