mirror of
https://github.com/ivabus/pantry
synced 2024-11-26 18:25:08 +03:00
parent
683bc4a924
commit
1dd842e73c
1 changed files with 9 additions and 1 deletions
|
@ -14,11 +14,19 @@ build:
|
||||||
tea.xyz/gx/cc: c99
|
tea.xyz/gx/cc: c99
|
||||||
tea.xyz/gx/make: '*'
|
tea.xyz/gx/make: '*'
|
||||||
script: |
|
script: |
|
||||||
./configure --prefix={{ prefix }}
|
./configure $ARGS
|
||||||
make --jobs {{ hw.concurrency }} install
|
make --jobs {{ hw.concurrency }} install
|
||||||
env:
|
env:
|
||||||
|
ARGS:
|
||||||
|
- --prefix={{ prefix }}
|
||||||
|
- --with-pic
|
||||||
|
- --disable-bootstrap
|
||||||
|
- --enable-shared
|
||||||
darwin:
|
darwin:
|
||||||
MACOSX_DEPLOYMENT_TARGET: 10.6 #FIXME our default (11) breaks the build
|
MACOSX_DEPLOYMENT_TARGET: 10.6 #FIXME our default (11) breaks the build
|
||||||
|
linux:
|
||||||
|
# Fix segmentation fault during install on Ubuntu
|
||||||
|
CPPFLAGS: -D_GNU_SOURCE
|
||||||
|
|
||||||
test:
|
test:
|
||||||
dependencies:
|
dependencies:
|
||||||
|
|
Loading…
Reference in a new issue