We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b2ef00 commit 9ef5e0bCopy full SHA for 9ef5e0b
Commandfile
@@ -9,8 +9,12 @@ command 'phpize',
9
10
command 'configure',
11
description: 'executes "configure" to prepare build',
12
+ parameters: {
13
+ cxxflags: { default: "-ggdb -Wall -Wno-write-strings" },
14
+ ldflags: { default: "-ggdb" },
15
+ },
16
script: <<-eof
- bash -c 'cd /data/build; ../v8js/configure `bash -c "if test -d /opt/libv8-*; then echo -n --with-v8js=; echo /opt/libv8-*; fi"` `test -d "/usr/lib64" && echo --with-libdir=lib64` CXXFLAGS="-Wall -Wno-write-strings"'
17
+ bash -c 'cd /data/build; ../v8js/configure `bash -c "if test -d /opt/libv8-*; then echo -n --with-v8js=; echo /opt/libv8-*; fi"` `test -d "/usr/lib64" && echo --with-libdir=lib64` CXXFLAGS="%{cxxflags}" LDFLAGS="%{ldflags}"'
18
eof
19
20
command 'clean',
0 commit comments