summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authordmcmahill <dmcmahill@pkgsrc.org>2009-10-08 01:24:51 +0000
committerdmcmahill <dmcmahill@pkgsrc.org>2009-10-08 01:24:51 +0000
commit29c792791a925d72f4f00313766f2f503fa501e1 (patch)
treeb0638eb53d440a21eb78159c6e52f47459e186df /lang
parent44d80538d204104bce6223d8c24932504ae1a711 (diff)
downloadpkgsrc-29c792791a925d72f4f00313766f2f503fa501e1.tar.gz
gcc44 fix
Diffstat (limited to 'lang')
-rw-r--r--lang/ocaml/hacks.mk20
1 files changed, 20 insertions, 0 deletions
diff --git a/lang/ocaml/hacks.mk b/lang/ocaml/hacks.mk
new file mode 100644
index 00000000000..cdec39f5d20
--- /dev/null
+++ b/lang/ocaml/hacks.mk
@@ -0,0 +1,20 @@
+# $NetBSD: hacks.mk,v 1.1 2009/10/08 01:24:51 dmcmahill Exp $
+
+.if !defined(OCAML_HACKS_MK)
+OCAML_HACKS_MK= defined
+
+.include "../../mk/compiler.mk"
+
+### [ Wed Oct 7 9:16:42 GMT 2009 : dmcmahill ]
+### On NetBSD/i386, gcc optimisation, at least for version 4.4.1 (lang/gcc44),
+### produces a binary which segfaults. The binary is used during part of the
+### build process.
+###
+.if !empty(MACHINE_PLATFORM:MNetBSD-*-i386)
+. if !empty(CC_VERSION:Mgcc-4.4.*)
+PKG_HACKS+= optimisation
+BUILDLINK_TRANSFORM+= rename:-O[0-9]*:-O
+. endif
+.endif
+
+.endif # OCAML_HACKS_MK