File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 34
34
# Used "set -ex" instead of hashbang since script isn't executed with hashbang
35
35
set -ex
36
36
trap "exit 1" ERR
37
- ./compile.sh -t linux64 -j 4 -g -P ${{ inputs.pm-version-major }} -c ./download_cache -D
37
+ ./compile.sh -t linux64 -j 4 -g -F - P ${{ inputs.pm-version-major }} -c ./download_cache -D
38
38
39
39
- name : Create tarball
40
40
run : |
97
97
export PATH="/usr/local/opt/bison/bin:$PATH"
98
98
set -ex
99
99
trap "exit 1" ERR
100
- ./compile.sh -t ${{ matrix.target-name }} -j4 -g -P ${{ inputs.pm-version-major }} -c ./download_cache -D
100
+ ./compile.sh -t ${{ matrix.target-name }} -j4 -g -F - P ${{ inputs.pm-version-major }} -c ./download_cache -D
101
101
102
102
- name : Create tarball
103
103
run : |
Original file line number Diff line number Diff line change @@ -398,6 +398,7 @@ call configure^
398
398
--with-crypto=shared^
399
399
--with-curl^
400
400
--with-dom^
401
+ --with-ffi^
401
402
--with-gd=shared^
402
403
--with-gmp^
403
404
--with-iconv^
@@ -474,6 +475,7 @@ if "%PM_VERSION_MAJOR%" geq "5" (
474
475
(echo opcache.optimization_level=0x7FFEBFFF)>> " %php_ini% "
475
476
(echo opcache.cache_id=PHP_BINARY ;prevent sharing SHM between different binaries - they won't work because of ASLR)>> " %php_ini% "
476
477
(echo ;Optional extensions, supplied for plugin use)>> " %php_ini% "
478
+ (echo extension=php_ffi.dll)>> " %php_ini% "
477
479
(echo extension=php_fileinfo.dll)>> " %php_ini% "
478
480
(echo extension=php_gd.dll)>> " %php_ini% "
479
481
(echo extension=php_grpc.dll)>> " %php_ini% "
You can’t perform that action at this time.
0 commit comments