df2fb4225c
Reported by bouyer@: http://mail-index.netbsd.org/pkgsrc-changes/2018/12/24/msg185017.html Bump PKGREVISION again.
18 lines
556 B
Makefile
18 lines
556 B
Makefile
# $NetBSD: hacks.mk,v 1.2 2018/12/24 14:45:50 tsutsui Exp $
|
|
|
|
.if !defined(VALA_HACKS_MK)
|
|
VALA_HACKS_MK= defined
|
|
|
|
.include "../../mk/compiler.mk"
|
|
|
|
### On NetBSD/earmv6hf 8.0 with gcc 5.5.0 and 8.99.25 with gcc 6.5.0,
|
|
### vala binaries compiled with the default optiomization options produce
|
|
### segmentation faulting.
|
|
### Compiling with `-fno-optimize-sibling-calls' works around.
|
|
###
|
|
.if !empty(MACHINE_PLATFORM:MNetBSD-*-*arm*) && !empty(CC_VERSION:Mgcc-[56].*)
|
|
PKG_HACKS+= optimisation
|
|
CFLAGS+= -fno-optimize-sibling-calls
|
|
.endif
|
|
|
|
.endif # VALA_HACKS_MK
|