10 lines
243 B
Go
10 lines
243 B
Go
|
//+build !windows
|
||
|
|
||
|
package imagequant
|
||
|
|
||
|
/*
|
||
|
#cgo CFLAGS: -O3 -fno-math-errno -fopenmp -funroll-loops -fomit-frame-pointer -Wall -Wno-attributes -std=c99 -DNDEBUG -DUSE_SSE=1 -msse -fexcess-precision=fast
|
||
|
#cgo LDFLAGS: -lm -fopenmp
|
||
|
*/
|
||
|
import "C"
|