pkgsrc/textproc/sift/patches/patch-matching__cgo.go
bsiegert 68cb8d9aa8 Fix build with Go 1.10, bump revision.
There is a cgo file in here that specifies -funroll-loops (fun!). Since
Go 1.9.4, only C compiler flags on a whitelist are allowed, and of course
that flag is not on it.
2018-03-13 17:28:59 +00:00

15 lines
355 B
Go

$NetBSD: patch-matching__cgo.go,v 1.1 2018/03/13 17:28:59 bsiegert Exp $
The -funroll-loops flag is not on the compiler flag whitelist.
--- matching_cgo.go.orig 2015-12-23 00:37:41.000000000 +0000
+++ matching_cgo.go
@@ -16,7 +16,7 @@
package main
/*
-#cgo CFLAGS: -std=gnu99 -O2 -funroll-loops
+#cgo CFLAGS: -std=gnu99 -O2
#include <stddef.h>