forked from NetherGamesMC/php-build-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompile.sh
executable file
·1110 lines (1002 loc) · 34.9 KB
/
compile.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/bin/bash
[ -z "$PHP_VERSION" ] && PHP_VERSION="8.0.19"
ZLIB_VERSION="1.2.11" #1.2.12 breaks on macOS and probably cross-compile too due to ignoring $CC
GMP_VERSION="6.2.1"
CURL_VERSION="curl-7_83_1"
YAML_VERSION="0.2.5"
LEVELDB_VERSION="1c7564468b41610da4f498430e795ca4de0931ff"
LIBXML_VERSION="2.9.14"
LIBPNG_VERSION="1.6.37"
LIBJPEG_VERSION="9e"
OPENSSL_VERSION="1.1.1o"
LIBZIP_VERSION="1.8.0"
SQLITE3_YEAR="2022"
SQLITE3_VERSION="3380500" #3.38.5
LIBDEFLATE_VERSION="b01537448e8eaf0803e38bdba5acef1d1c8effba" #1.11
EXT_PTHREADS_VERSION="4.0.0"
EXT_YAML_VERSION="2.2.2"
EXT_LEVELDB_VERSION="317fdcd8415e1566fc2835ce2bdb8e19b890f9f3"
EXT_CHUNKUTILS2_VERSION="0.3.3"
EXT_XDEBUG_VERSION="3.1.4"
EXT_IGBINARY_VERSION="3.2.7"
EXT_CRYPTO_VERSION="0.3.2"
EXT_RECURSIONGUARD_VERSION="0.1.0"
EXT_LIBDEFLATE_VERSION="0.1.0"
EXT_MORTON_VERSION="0.1.2"
EXT_XXHASH_VERSION="0.1.1"
EXT_VANILLAGENERATOR_VERSION="56fc48ea1367e1d08b228dfa580b513fbec8ca31"
EXT_ZSTD_VERSION="0.11.0"
function write_out {
echo "[$1] $2"
}
function write_error {
write_out ERROR "$1" >&2
}
echo "[PocketMine] PHP compiler for Linux, MacOS and Android"
DIR="$(pwd)"
BASE_BUILD_DIR="$DIR/install_data"
#libtool and autoconf have a "feature" where it looks for install.sh/install-sh in ./ ../ and ../../
#this extra subdir makes sure that it doesn't find anything it's not supposed to be looking for.
BUILD_DIR="$BASE_BUILD_DIR/subdir"
INSTALL_DIR="$DIR/bin/php7"
date > "$DIR/install.log" 2>&1
uname -a >> "$DIR/install.log" 2>&1
echo "[INFO] Checking dependencies"
COMPILE_SH_DEPENDENCIES=( make autoconf automake m4 getconf gzip bzip2 bison g++ git cmake pkg-config re2c)
ERRORS=0
for(( i=0; i<${#COMPILE_SH_DEPENDENCIES[@]}; i++ ))
do
type "${COMPILE_SH_DEPENDENCIES[$i]}" >> "$DIR/install.log" 2>&1 || { write_error "Please install \"${COMPILE_SH_DEPENDENCIES[$i]}\""; ((ERRORS++)); }
done
type wget >> "$DIR/install.log" 2>&1 || type curl >> "$DIR/install.log" || { echo >&2 "[ERROR] Please install \"wget\" or \"curl\""; ((ERRORS++)); }
if [ "$(uname -s)" == "Darwin" ]; then
type glibtool >> "$DIR/install.log" 2>&1 || { echo >&2 "[ERROR] Please install GNU libtool"; ((ERRORS++)); }
export LIBTOOL=glibtool
export LIBTOOLIZE=glibtoolize
[[ $(bison --version) == "bison (GNU Bison) 3."* ]] || { echo >&2 "[ERROR] MacOS bundled bison is too old. Install bison using Homebrew and update your PATH variable according to its instructions before running this script."; ((ERRORS++)); }
else
type libtool >> "$DIR/install.log" 2>&1 || { echo >&2 "[ERROR] Please install \"libtool\" or \"libtool-bin\""; ((ERRORS++)); }
export LIBTOOL=libtool
export LIBTOOLIZE=libtoolize
fi
if [ $ERRORS -ne 0 ]; then
exit 1
fi
#Needed to use aliases
shopt -s expand_aliases
type wget >> "$DIR/install.log" 2>&1
if [ $? -eq 0 ]; then
alias _download_file="wget --no-check-certificate -nv -O -"
else
type curl >> "$DIR/install.log" 2>&1
if [ $? -eq 0 ]; then
alias _download_file="curl --insecure --silent --show-error --location --globoff"
else
echo "error, curl or wget not found"
exit 1
fi
fi
function download_file {
_download_file "$1" 2>> "$DIR/install.log"
}
#if type llvm-gcc >/dev/null 2>&1; then
# export CC="llvm-gcc"
# export CXX="llvm-g++"
# export AR="llvm-ar"
# export AS="llvm-as"
# export RANLIB=llvm-ranlib
#else
export CC="gcc"
export CXX="g++"
#export AR="gcc-ar"
export RANLIB=ranlib
#fi
COMPILE_FOR_ANDROID=no
HAVE_MYSQLI="--enable-mysqlnd --with-mysqli=mysqlnd"
COMPILE_TARGET=""
IS_CROSSCOMPILE="no"
IS_WINDOWS="no"
DO_OPTIMIZE="no"
OPTIMIZE_TARGET=""
DO_STATIC="no"
DO_CLEANUP="yes"
COMPILE_DEBUG="no"
HAVE_VALGRIND="--without-valgrind"
HAVE_OPCACHE="yes"
FSANITIZE_OPTIONS=""
FLAGS_LTO=""
LD_PRELOAD=""
COMPILE_GD="no"
while getopts "::t:j:srdxff:gnva:" OPTION; do
case $OPTION in
t)
echo "[opt] Set target to $OPTARG"
COMPILE_TARGET="$OPTARG"
;;
j)
echo "[opt] Set make threads to $OPTARG"
THREADS="$OPTARG"
;;
d)
echo "[opt] Will compile xdebug, will not remove sources"
COMPILE_DEBUG="yes"
DO_CLEANUP="no"
CFLAGS="$CFLAGS -g"
CXXFLAGS="$CXXFLAGS -g"
;;
x)
echo "[opt] Doing cross-compile"
IS_CROSSCOMPILE="yes"
;;
s)
echo "[opt] Will compile everything statically"
DO_STATIC="yes"
CFLAGS="$CFLAGS -static"
;;
f)
echo "[opt] Enabling abusive optimizations..."
DO_OPTIMIZE="yes"
OPTIMIZE_TARGET="$OPTARG"
;;
g)
echo "[opt] Will enable GD2"
COMPILE_GD="yes"
;;
n)
echo "[opt] Will not remove sources after completing compilation"
DO_CLEANUP="no"
;;
v)
echo "[opt] Will enable valgrind support in PHP"
HAVE_VALGRIND="--with-valgrind"
;;
a)
echo "[opt] Will pass -fsanitize=$OPTARG to compilers and linkers"
FSANITIZE_OPTIONS="$OPTARG"
;;
\?)
echo "Invalid option: -$OPTARG" >&2
exit 1
;;
esac
done
GMP_ABI=""
TOOLCHAIN_PREFIX=""
OPENSSL_TARGET=""
CMAKE_GLOBAL_EXTRA_FLAGS=""
if [ "$IS_CROSSCOMPILE" == "yes" ]; then
export CROSS_COMPILER="$PATH"
if [[ "$COMPILE_TARGET" == "win" ]] || [[ "$COMPILE_TARGET" == "win64" ]]; then
TOOLCHAIN_PREFIX="x86_64-w64-mingw32"
[ -z "$march" ] && march=x86_64;
[ -z "$mtune" ] && mtune=nocona;
CFLAGS="$CFLAGS -mconsole"
CONFIGURE_FLAGS="--host=$TOOLCHAIN_PREFIX --target=$TOOLCHAIN_PREFIX --build=$TOOLCHAIN_PREFIX"
IS_WINDOWS="yes"
OPENSSL_TARGET="mingw64"
GMP_ABI="64"
echo "[INFO] Cross-compiling for Windows 64-bit"
elif [ "$COMPILE_TARGET" == "mac" ]; then
[ -z "$march" ] && march=prescott;
[ -z "$mtune" ] && mtune=generic;
CFLAGS="$CFLAGS -fomit-frame-pointer";
TOOLCHAIN_PREFIX="i686-apple-darwin10"
CONFIGURE_FLAGS="--host=$TOOLCHAIN_PREFIX"
#zlib doesn't use the correct ranlib
RANLIB=$TOOLCHAIN_PREFIX-ranlib
CFLAGS="$CFLAGS -Qunused-arguments -Wno-error=unused-command-line-argument-hard-error-in-future"
ARCHFLAGS="-Wno-error=unused-command-line-argument-hard-error-in-future"
OPENSSL_TARGET="darwin64-x86_64-cc"
GMP_ABI="32"
echo "[INFO] Cross-compiling for Intel MacOS"
elif [ "$COMPILE_TARGET" == "android-aarch64" ]; then
COMPILE_FOR_ANDROID=yes
[ -z "$march" ] && march="armv8-a";
[ -z "$mtune" ] && mtune=generic;
TOOLCHAIN_PREFIX="aarch64-linux-musl"
CONFIGURE_FLAGS="--host=$TOOLCHAIN_PREFIX"
CFLAGS="-static $CFLAGS"
CXXFLAGS="-static $CXXFLAGS"
LDFLAGS="-static -static-libgcc -Wl,-static"
DO_STATIC="yes"
OPENSSL_TARGET="linux-aarch64"
export ac_cv_func_fnmatch_works=yes #musl should be OK
echo "[INFO] Cross-compiling for Android ARMv8 (aarch64)"
#TODO: add cross-compile for aarch64 platforms (ios, rpi)
else
echo "Please supply a proper platform [mac win win64 android-aarch64] to cross-compile"
exit 1
fi
else
if [[ "$COMPILE_TARGET" == "" ]] && [[ "$(uname -s)" == "Darwin" ]]; then
if [ "$(uname -m)" == "arm64" ]; then
COMPILE_TARGET="mac-arm64"
else
COMPILE_TARGET="mac-x86-64"
fi
fi
if [[ "$COMPILE_TARGET" == "linux" ]] || [[ "$COMPILE_TARGET" == "linux64" ]]; then
[ -z "$march" ] && march=x86-64;
[ -z "$mtune" ] && mtune=skylake;
CFLAGS="$CFLAGS -m64"
GMP_ABI="64"
OPENSSL_TARGET="linux-x86_64"
echo "[INFO] Compiling for Linux x86_64"
elif [[ "$COMPILE_TARGET" == "mac-x86-64" ]]; then
[ -z "$march" ] && march=core2;
[ -z "$mtune" ] && mtune=generic;
[ -z "$MACOSX_DEPLOYMENT_TARGET" ] && export MACOSX_DEPLOYMENT_TARGET=10.9;
CFLAGS="$CFLAGS -m64 -arch x86_64 -fomit-frame-pointer -mmacosx-version-min=$MACOSX_DEPLOYMENT_TARGET"
LDFLAGS="$LDFLAGS -mmacosx-version-min=$MACOSX_DEPLOYMENT_TARGET"
if [ "$DO_STATIC" == "no" ]; then
LDFLAGS="$LDFLAGS -Wl,-rpath,@loader_path/../lib";
export DYLD_LIBRARY_PATH="@loader_path/../lib"
fi
CFLAGS="$CFLAGS -Qunused-arguments -Wno-error=unused-command-line-argument-hard-error-in-future"
ARCHFLAGS="-Wno-error=unused-command-line-argument-hard-error-in-future"
GMP_ABI="64"
OPENSSL_TARGET="darwin64-x86_64-cc"
CMAKE_GLOBAL_EXTRA_FLAGS="-DCMAKE_OSX_ARCHITECTURES=x86_64"
echo "[INFO] Compiling for MacOS x86_64"
#TODO: add aarch64 platforms (ios, android, rpi)
elif [[ "$COMPILE_TARGET" == "mac-arm64" ]]; then
[ -z "$MACOSX_DEPLOYMENT_TARGET" ] && export MACOSX_DEPLOYMENT_TARGET=11.0;
CFLAGS="$CFLAGS -arch arm64 -fomit-frame-pointer -mmacosx-version-min=$MACOSX_DEPLOYMENT_TARGET"
LDFLAGS="$LDFLAGS -mmacosx-version-min=$MACOSX_DEPLOYMENT_TARGET"
if [ "$DO_STATIC" == "no" ]; then
LDFLAGS="$LDFLAGS -Wl,-rpath,@loader_path/../lib";
export DYLD_LIBRARY_PATH="@loader_path/../lib"
fi
CFLAGS="$CFLAGS -Qunused-arguments"
GMP_ABI="64"
OPENSSL_TARGET="darwin64-arm64-cc"
CMAKE_GLOBAL_EXTRA_FLAGS="-DCMAKE_OSX_ARCHITECTURES=arm64"
echo "[INFO] Compiling for MacOS M1"
elif [[ "$COMPILE_TARGET" != "" ]]; then
echo "Please supply a proper platform [mac-arm64 mac-x86-64 linux linux64] to compile for"
exit 1
elif [ -z "$CFLAGS" ]; then
if [ `getconf LONG_BIT` == "64" ]; then
echo "[INFO] Compiling for current machine using 64-bit"
if [ "$(uname -m)" != "aarch64" ]; then
CFLAGS="-m64 $CFLAGS"
fi
GMP_ABI="64"
else
echo "[ERROR] PocketMine-MP is no longer supported on 32-bit systems"
exit 1
fi
fi
fi
if [ "$DO_STATIC" == "yes" ]; then
HAVE_OPCACHE="no" #doesn't work on static builds
echo "[warning] OPcache cannot be used on static builds; this may have a negative effect on performance"
if [ "$FSANITIZE_OPTIONS" != "" ]; then
echo "[warning] Sanitizers cannot be used on static builds"
fi
fi
if [ "$DO_OPTIMIZE" != "no" ]; then
#FLAGS_LTO="-fvisibility=hidden -flto"
CFLAGS="$CFLAGS -O2 -ffast-math -ftree-vectorize -fomit-frame-pointer -funswitch-loops -fivopts"
if [ "$COMPILE_TARGET" != "mac-x86-64" ] && [ "$COMPILE_TARGET" != "mac-arm64" ]; then
CFLAGS="$CFLAGS -funsafe-loop-optimizations -fpredictive-commoning -ftracer -ftree-loop-im -frename-registers -fcx-limited-range"
fi
if [ "$OPTIMIZE_TARGET" == "arm" ]; then
CFLAGS="$CFLAGS -mfpu=vfp"
elif [ "$OPTIMIZE_TARGET" == "x86_64" ]; then
CFLAGS="$CFLAGS -mmmx -msse -msse2 -msse3 -mfpmath=sse -free -msahf -ftree-parallelize-loops=4"
elif [ "$OPTIMIZE_TARGET" == "x86" ]; then
CFLAGS="$CFLAGS -mmmx -msse -msse2 -mfpmath=sse -m128bit-long-double -malign-double -ftree-parallelize-loops=4"
fi
fi
if [ "$TOOLCHAIN_PREFIX" != "" ]; then
export CC="$TOOLCHAIN_PREFIX-gcc"
export CXX="$TOOLCHAIN_PREFIX-g++"
export AR="$TOOLCHAIN_PREFIX-ar"
export RANLIB="$TOOLCHAIN_PREFIX-ranlib"
export CPP="$TOOLCHAIN_PREFIX-cpp"
export LD="$TOOLCHAIN_PREFIX-ld"
fi
echo "#include <stdio.h>" > test.c
echo "int main(void){" >> test.c
echo "printf(\"Hello world\n\");" >> test.c
echo "return 0;" >> test.c
echo "}" >> test.c
type $CC >> "$DIR/install.log" 2>&1 || { echo >&2 "[ERROR] Please install \"$CC\""; exit 1; }
[ -z "$THREADS" ] && THREADS=1;
[ -z "$march" ] && march=native;
[ -z "$mtune" ] && mtune=native;
[ -z "$CFLAGS" ] && CFLAGS="";
if [ "$DO_STATIC" == "no" ]; then
[ -z "$LDFLAGS" ] && LDFLAGS="-Wl,-rpath='\$\$ORIGIN/../lib' -Wl,-rpath-link='\$\$ORIGIN/../lib'";
fi
[ -z "$CONFIGURE_FLAGS" ] && CONFIGURE_FLAGS="";
if [ "$mtune" != "none" ]; then
$CC -march=$march -mtune=$mtune $CFLAGS -o test test.c >> "$DIR/install.log" 2>&1
if [ $? -eq 0 ]; then
CFLAGS="-march=$march -mtune=$mtune -fno-gcse $CFLAGS"
fi
else
$CC -march=$march $CFLAGS -o test test.c >> "$DIR/install.log" 2>&1
if [ $? -eq 0 ]; then
CFLAGS="-march=$march -fno-gcse $CFLAGS"
fi
fi
if [ "$FSANITIZE_OPTIONS" != "" ]; then
CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS" LDFLAGS="$LDFLAGS" $CC -fsanitize=$FSANITIZE_OPTIONS -o asan-test test.c >> "$DIR/install.log" 2>&1 && \
chmod +x asan-test >> "$DIR/install.log" 2>&1 && \
./asan-test >> "$DIR/install.log" 2>&1 && \
rm asan-test >> "$DIR/install.log" 2>&1
if [ $? -ne 0 ]; then
echo "[ERROR] One or more sanitizers are not working. Check install.log for details."
exit 1
else
echo "[INFO] All selected sanitizers are working"
fi
fi
rm test.* >> "$DIR/install.log" 2>&1
rm test >> "$DIR/install.log" 2>&1
export CC="$CC"
export CXX="$CXX"
export CFLAGS="-O2 -fPIC $CFLAGS"
export CXXFLAGS="$CFLAGS $CXXFLAGS"
export LDFLAGS="$LDFLAGS"
export CPPFLAGS="$CPPFLAGS"
export LIBRARY_PATH="$INSTALL_DIR/lib:$LIBRARY_PATH"
export PKG_CONFIG_PATH="$INSTALL_DIR/lib/pkgconfig"
#some stuff (like curl) makes assumptions about library paths that break due to different behaviour in pkgconf vs pkg-config
export PKG_CONFIG_ALLOW_SYSTEM_LIBS="yes"
export PKG_CONFIG_ALLOW_SYSTEM_CFLAGS="yes"
rm -r -f "$BASE_BUILD_DIR" >> "$DIR/install.log" 2>&1
rm -r -f bin/ >> "$DIR/install.log" 2>&1
mkdir -m 0755 "$BASE_BUILD_DIR" >> "$DIR/install.log" 2>&1
mkdir -m 0755 "$BUILD_DIR" >> "$DIR/install.log" 2>&1
mkdir -m 0755 -p $INSTALL_DIR >> "$DIR/install.log" 2>&1
cd "$BUILD_DIR"
set -e
#PHP 7
echo -n "[PHP] downloading $PHP_VERSION..."
download_file "https://github.com/php/php-src/archive/php-$PHP_VERSION.tar.gz" | tar -zx >> "$DIR/install.log" 2>&1
mv php-src-php-$PHP_VERSION php
echo " done!"
function build_zlib {
if [ "$DO_STATIC" == "yes" ]; then
local EXTRA_FLAGS="--static"
else
local EXTRA_FLAGS="--shared"
fi
#zlib
echo -n "[zlib] downloading $ZLIB_VERSION..."
download_file "https://github.com/madler/zlib/archive/v$ZLIB_VERSION.tar.gz" | tar -zx >> "$DIR/install.log" 2>&1
mv zlib-$ZLIB_VERSION zlib
echo -n " checking..."
cd zlib
RANLIB=$RANLIB ./configure --prefix="$INSTALL_DIR" \
$EXTRA_FLAGS >> "$DIR/install.log" 2>&1
echo -n " compiling..."
make -j $THREADS >> "$DIR/install.log" 2>&1
echo -n " installing..."
make install >> "$DIR/install.log" 2>&1
cd ..
if [ "$DO_STATIC" != "yes" ]; then
rm -f "$INSTALL_DIR/lib/libz.a"
fi
echo " done!"
}
function build_gmp {
export jm_cv_func_working_malloc=yes
export ac_cv_func_malloc_0_nonnull=yes
export jm_cv_func_working_realloc=yes
export ac_cv_func_realloc_0_nonnull=yes
if [ "$IS_CROSSCOMPILE" == "yes" ]; then
local EXTRA_FLAGS=""
else
local EXTRA_FLAGS="--disable-assembly"
fi
#GMP
echo -n "[GMP] downloading $GMP_VERSION..."
download_file "https://gmplib.org/download/gmp/gmp-$GMP_VERSION.tar.bz2" | tar -jx >> "$DIR/install.log" 2>&1
mv gmp-$GMP_VERSION gmp
echo -n " checking..."
cd gmp
RANLIB=$RANLIB ./configure --prefix="$INSTALL_DIR" \
$EXTRA_FLAGS \
--disable-posix-threads \
--enable-static \
--disable-shared \
$CONFIGURE_FLAGS ABI="$GMP_ABI" >> "$DIR/install.log" 2>&1
echo -n " compiling..."
make -j $THREADS >> "$DIR/install.log" 2>&1
echo -n " installing..."
make install >> "$DIR/install.log" 2>&1
cd ..
echo " done!"
}
function build_openssl {
#OpenSSL
OPENSSL_CMD="./config"
if [ "$OPENSSL_TARGET" != "" ]; then
local OPENSSL_CMD="./Configure $OPENSSL_TARGET"
fi
if [ "$DO_STATIC" == "yes" ]; then
local EXTRA_FLAGS="no-shared"
else
local EXTRA_FLAGS="shared"
fi
WITH_OPENSSL="--with-openssl=$INSTALL_DIR"
echo -n "[OpenSSL] downloading $OPENSSL_VERSION..."
download_file "http://www.openssl.org/source/openssl-$OPENSSL_VERSION.tar.gz" | tar -zx >> "$DIR/install.log" 2>&1
mv openssl-$OPENSSL_VERSION openssl
echo -n " checking..."
cd openssl
RANLIB=$RANLIB $OPENSSL_CMD \
--prefix="$INSTALL_DIR" \
--openssldir="$INSTALL_DIR" \
no-asm \
no-hw \
no-engine \
$EXTRA_FLAGS >> "$DIR/install.log" 2>&1
echo -n " compiling..."
make -j $THREADS >> "$DIR/install.log" 2>&1
echo -n " installing..."
make install_sw >> "$DIR/install.log" 2>&1
cd ..
echo " done!"
}
function build_curl {
if [ "$DO_STATIC" == "yes" ]; then
local EXTRA_FLAGS="--enable-static --disable-shared"
else
local EXTRA_FLAGS="--disable-static --enable-shared"
fi
#curl
echo -n "[cURL] downloading $CURL_VERSION..."
download_file "https://github.com/curl/curl/archive/$CURL_VERSION.tar.gz" | tar -zx >> "$DIR/install.log" 2>&1
mv curl-$CURL_VERSION curl
echo -n " checking..."
cd curl
./buildconf --force >> "$DIR/install.log" 2>&1
RANLIB=$RANLIB ./configure --disable-dependency-tracking \
--enable-ipv6 \
--enable-optimize \
--enable-http \
--enable-ftp \
--disable-dict \
--enable-file \
--without-librtmp \
--disable-gopher \
--disable-imap \
--disable-pop3 \
--disable-rtsp \
--disable-smtp \
--disable-telnet \
--disable-tftp \
--disable-ldap \
--disable-ldaps \
--without-libidn \
--without-libidn2 \
--without-brotli \
--without-nghttp2 \
--without-zstd \
--with-zlib="$INSTALL_DIR" \
--with-ssl="$INSTALL_DIR" \
--enable-threaded-resolver \
--prefix="$INSTALL_DIR" \
$EXTRA_FLAGS \
$CONFIGURE_FLAGS >> "$DIR/install.log" 2>&1
echo -n " compiling..."
make -j $THREADS >> "$DIR/install.log" 2>&1
echo -n " installing..."
make install >> "$DIR/install.log" 2>&1
cd ..
echo " done!"
}
function build_yaml {
if [ "$DO_STATIC" == "yes" ]; then
local EXTRA_FLAGS="--disable-shared --enable-static"
else
local EXTRA_FLAGS="--enable-shared --disable-static"
fi
echo -n "[YAML] downloading $YAML_VERSION..."
download_file "https://github.com/yaml/libyaml/archive/$YAML_VERSION.tar.gz" | tar -zx >> "$DIR/install.log" 2>&1
mv libyaml-$YAML_VERSION yaml
cd yaml
./bootstrap >> "$DIR/install.log" 2>&1
echo -n " checking..."
RANLIB=$RANLIB ./configure \
--prefix="$INSTALL_DIR" \
$EXTRA_FLAGS \
$CONFIGURE_FLAGS >> "$DIR/install.log" 2>&1
sed -i=".backup" 's/ tests win32/ win32/g' Makefile
echo -n " compiling..."
make -j $THREADS all >> "$DIR/install.log" 2>&1
echo -n " installing..."
make install >> "$DIR/install.log" 2>&1
cd ..
echo " done!"
}
function build_leveldb {
echo -n "[LevelDB] downloading $LEVELDB_VERSION..."
download_file "https://github.com/pmmp/leveldb/archive/$LEVELDB_VERSION.tar.gz" | tar -zx >> "$DIR/install.log" 2>&1
#download_file "https://github.com/Mojang/leveldb-mcpe/archive/$LEVELDB_VERSION.tar.gz" | tar -zx >> "$DIR/install.log" 2>&1
mv leveldb-$LEVELDB_VERSION leveldb
echo -n " checking..."
cd leveldb
if [ "$DO_STATIC" != "yes" ]; then
local EXTRA_FLAGS="-DBUILD_SHARED_LIBS=ON"
else
local EXTRA_FLAGS=""
fi
cmake . \
-DCMAKE_INSTALL_PREFIX="$INSTALL_DIR" \
-DCMAKE_PREFIX_PATH="$INSTALL_DIR" \
-DCMAKE_INSTALL_LIBDIR=lib \
-DLEVELDB_BUILD_TESTS=OFF \
-DLEVELDB_BUILD_BENCHMARKS=OFF \
-DLEVELDB_SNAPPY=OFF \
-DLEVELDB_ZSTD=OFF \
-DLEVELDB_TCMALLOC=OFF \
-DCMAKE_BUILD_TYPE=Release \
$CMAKE_GLOBAL_EXTRA_FLAGS \
$EXTRA_FLAGS \
>> "$DIR/install.log" 2>&1
echo -n " compiling..."
make -j $THREADS >> "$DIR/install.log" 2>&1
echo -n " installing..."
make install >> "$DIR/install.log" 2>&1
cd ..
echo " done!"
}
function build_libpng {
if [ "$DO_STATIC" == "yes" ]; then
local EXTRA_FLAGS="--enable-shared=no --enable-static=yes"
else
local EXTRA_FLAGS="--enable-shared=yes --enable-static=no"
fi
#libpng
echo -n "[libpng] downloading $LIBPNG_VERSION..."
download_file "https://sourceforge.net/projects/libpng/files/libpng16/$LIBPNG_VERSION/libpng-$LIBPNG_VERSION.tar.gz" | tar -zx >> "$DIR/install.log" 2>&1
mv libpng-$LIBPNG_VERSION libpng
echo -n " checking..."
cd libpng
LDFLAGS="$LDFLAGS -L${INSTALL_DIR}/lib" CPPFLAGS="$CPPFLAGS -I${INSTALL_DIR}/include" RANLIB=$RANLIB ./configure \
--prefix="$INSTALL_DIR" \
$EXTRA_FLAGS \
$CONFIGURE_FLAGS >> "$DIR/install.log" 2>&1
echo -n " compiling..."
make -j $THREADS >> "$DIR/install.log" 2>&1
echo -n " installing..."
make install >> "$DIR/install.log" 2>&1
cd ..
echo " done!"
}
function build_libjpeg {
if [ "$DO_STATIC" == "yes" ]; then
local EXTRA_FLAGS="--enable-shared=no --enable-static=yes"
else
local EXTRA_FLAGS="--enable-shared=yes --enable-static=no"
fi
#libjpeg
echo -n "[libjpeg] downloading $LIBJPEG_VERSION..."
download_file "https://ijg.org/files/jpegsrc.v$LIBJPEG_VERSION.tar.gz" | tar -zx >> "$DIR/install.log" 2>&1
mv jpeg-$LIBJPEG_VERSION libjpeg
echo -n " checking..."
cd libjpeg
LDFLAGS="$LDFLAGS -L${INSTALL_DIR}/lib" CPPFLAGS="$CPPFLAGS -I${INSTALL_DIR}/include" RANLIB=$RANLIB ./configure \
--prefix="$INSTALL_DIR" \
$EXTRA_FLAGS \
$CONFIGURE_FLAGS >> "$DIR/install.log" 2>&1
echo -n " compiling..."
make -j $THREADS >> "$DIR/install.log" 2>&1
echo -n " installing..."
make install >> "$DIR/install.log" 2>&1
cd ..
echo " done!"
}
function build_libxml2 {
#libxml2
echo -n "[libxml] downloading $LIBXML_VERSION... "
download_file "https://gitlab.gnome.org/GNOME/libxml2/-/archive/v$LIBXML_VERSION/libxml2-v$LIBXML_VERSION.tar.gz" | tar -xz >> "$DIR/install.log" 2>&1
mv libxml2-v$LIBXML_VERSION libxml2
echo -n "checking... "
cd libxml2
if [ "$DO_STATIC" == "yes" ]; then
local EXTRA_FLAGS="--enable-shared=no --enable-static=yes"
else
local EXTRA_FLAGS="--enable-shared=yes --enable-static=no"
fi
sed -i.bak 's{libtoolize --version{"$LIBTOOLIZE" --version{' autogen.sh #needed for glibtool on macos
./autogen.sh --prefix="$INSTALL_DIR" \
--without-iconv \
--without-python \
--without-lzma \
--with-zlib="$INSTALL_DIR" \
--config-cache \
$EXTRA_FLAGS \
$CONFIGURE_FLAGS >> "$DIR/install.log" 2>&1
echo -n "compiling... "
make -j $THREADS >> "$DIR/install.log" 2>&1
echo -n "installing... "
make install >> "$DIR/install.log" 2>&1
cd ..
echo "done!"
}
function build_libzip {
#libzip
if [ "$DO_STATIC" == "yes" ]; then
local CMAKE_LIBZIP_EXTRA_FLAGS="-DBUILD_SHARED_LIBS=OFF"
fi
echo -n "[libzip] downloading $LIBZIP_VERSION..."
download_file "https://libzip.org/download/libzip-$LIBZIP_VERSION.tar.gz" | tar -zx >> "$DIR/install.log" 2>&1
mv libzip-$LIBZIP_VERSION libzip >> "$DIR/install.log" 2>&1
echo -n " checking..."
cd libzip
#we're using OpenSSL for crypto
cmake . \
-DCMAKE_PREFIX_PATH="$INSTALL_DIR" \
-DCMAKE_INSTALL_PREFIX="$INSTALL_DIR" \
-DCMAKE_INSTALL_LIBDIR=lib \
$CMAKE_LIBZIP_EXTRA_FLAGS \
$CMAKE_GLOBAL_EXTRA_FLAGS \
-DBUILD_TOOLS=OFF \
-DBUILD_REGRESS=OFF \
-DBUILD_EXAMPLES=OFF \
-DBUILD_DOC=OFF \
-DENABLE_BZIP2=OFF \
-DENABLE_COMMONCRYPTO=OFF \
-DENABLE_GNUTLS=OFF \
-DENABLE_MBEDTLS=OFF \
-DENABLE_LZMA=OFF \
-DENABLE_ZSTD=OFF >> "$DIR/install.log" 2>&1
echo -n " compiling..."
make -j $THREADS >> "$DIR/install.log" 2>&1
echo -n " installing..."
make install >> "$DIR/install.log" 2>&1
cd ..
echo " done!"
}
function build_sqlite3 {
if [ "$DO_STATIC" == "yes" ]; then
local EXTRA_FLAGS="--enable-static=yes --enable-shared=no"
else
local EXTRA_FLAGS="--enable-static=no --enable-shared=yes"
fi
#sqlite3
echo -n "[sqlite3] downloading $SQLITE3_VERSION..."
download_file "https://www.sqlite.org/$SQLITE3_YEAR/sqlite-autoconf-$SQLITE3_VERSION.tar.gz" | tar -zx >> "$DIR/install.log" 2>&1
mv sqlite-autoconf-$SQLITE3_VERSION sqlite3 >> "$DIR/install.log" 2>&1
echo -n " checking..."
cd sqlite3
LDFLAGS="$LDFLAGS -L${INSTALL_DIR}/lib" CPPFLAGS="$CPPFLAGS -I${INSTALL_DIR}/include" RANLIB=$RANLIB ./configure \
--prefix="$INSTALL_DIR" \
--disable-dependency-tracking \
--enable-static-shell=no \
$EXTRA_FLAGS \
$CONFIGURE_FLAGS >> "$DIR/install.log" 2>&1
echo -n " compiling..."
make -j $THREADS >> "$DIR/install.log" 2>&1
echo -n " installing..."
make install >> "$DIR/install.log" 2>&1
cd ..
echo " done!"
}
function build_libdeflate {
echo -n "[libdeflate] downloading $LIBDEFLATE_VERSION..."
download_file "https://github.com/ebiggers/libdeflate/archive/$LIBDEFLATE_VERSION.tar.gz" | tar -zx >> "$DIR/install.log" 2>&1
mv libdeflate-$LIBDEFLATE_VERSION libdeflate >> "$DIR/install.log" 2>&1
cd libdeflate
if [ "$DO_STATIC" == "yes" ]; then
echo -n " compiling..."
make -j $THREADS libdeflate.a >> "$DIR/install.log" 2>&1
echo -n " manually copying installation files for static build..."
cp ./libdeflate.a "$INSTALL_DIR/lib"
cp ./libdeflate.h "$INSTALL_DIR/include"
else
echo -n " compiling..."
PREFIX="$INSTALL_DIR" make -j $THREADS install >> "$DIR/install.log" 2>&1
echo -n " cleaning..."
rm "$INSTALL_DIR/lib/libdeflate.a"
if [ "$(uname -s)" == "Darwin" ]; then
#libdeflate makefile doesn't set this correctly
install_name_tool -id "$INSTALL_DIR/lib/libdeflate.0.dylib" "$INSTALL_DIR/lib/libdeflate.0.dylib"
fi
fi
cd ..
echo " done!"
}
build_zlib
build_gmp
build_openssl
build_curl
build_yaml
build_leveldb
if [ "$COMPILE_GD" == "yes" ]; then
build_libpng
build_libjpeg
HAS_GD="--enable-gd"
HAS_LIBJPEG="--with-jpeg"
else
HAS_GD=""
HAS_LIBJPEG=""
fi
build_libxml2
build_libzip
build_sqlite3
build_libdeflate
# PECL libraries
# 1: extension name
# 2: extension version
# 3: URL to get .tar.gz from
# 4: Name of extracted directory to move
function get_extension_tar_gz {
echo -n " $1: downloading $2..."
download_file "$3" | tar -zx >> "$DIR/install.log" 2>&1
mv "$4" "$BUILD_DIR/php/ext/$1"
echo " done!"
}
# 1: extension name
# 2: extension version
# 3: github user name
# 4: github repo name
# 5: version prefix (optional)
function get_github_extension {
get_extension_tar_gz "$1" "$2" "https://github.com/$3/$4/archive/$5$2.tar.gz" "$4-$2"
}
# 1: extension name
# 2: extension version
function get_pecl_extension {
get_extension_tar_gz "$1" "$2" "http://pecl.php.net/get/$1-$2.tgz" "$1-$2"
}
echo "[PHP] Downloading additional extensions..."
get_github_extension "pthreads" "$EXT_PTHREADS_VERSION" "pmmp" "pthreads" #"v" needed for release tags because github removes the "v"
#get_pecl_extension "pthreads" "$EXT_PTHREADS_VERSION"
get_github_extension "yaml" "$EXT_YAML_VERSION" "php" "pecl-file_formats-yaml"
#get_pecl_extension "yaml" "$EXT_YAML_VERSION"
get_github_extension "igbinary" "$EXT_IGBINARY_VERSION" "igbinary" "igbinary"
get_github_extension "recursionguard" "$EXT_RECURSIONGUARD_VERSION" "pmmp" "ext-recursionguard"
#get_github_extension "zstd" "$EXT_ZSTD_VERSION" "kjdev" "php-ext-zstd"
get_pecl_extension "zstd" "$EXT_ZSTD_VERSION"
echo -n " crypto: downloading $EXT_CRYPTO_VERSION..."
git clone https://github.com/bukka/php-crypto.git "$BUILD_DIR/php/ext/crypto" >> "$DIR/install.log" 2>&1
cd "$BUILD_DIR/php/ext/crypto"
git checkout "$EXT_CRYPTO_VERSION" >> "$DIR/install.log" 2>&1
git submodule update --init --recursive >> "$DIR/install.log" 2>&1
cd "$BUILD_DIR"
echo " done!"
get_github_extension "leveldb" "$EXT_LEVELDB_VERSION" "pmmp" "php-leveldb"
get_github_extension "chunkutils2" "$EXT_CHUNKUTILS2_VERSION" "pmmp" "ext-chunkutils2"
get_github_extension "libdeflate" "$EXT_LIBDEFLATE_VERSION" "pmmp" "ext-libdeflate"
get_github_extension "morton" "$EXT_MORTON_VERSION" "pmmp" "ext-morton"
get_github_extension "xxhash" "$EXT_XXHASH_VERSION" "pmmp" "ext-xxhash"
get_github_extension "vanillagenerator" "$EXT_VANILLAGENERATOR_VERSION" "NetherGamesMC" "ext-vanillagenerator"
echo -n "[PHP]"
if [ "$DO_OPTIMIZE" != "no" ]; then
echo -n " enabling optimizations..."
PHP_OPTIMIZATION="--enable-inline-optimization "
else
PHP_OPTIMIZATION="--disable-inline-optimization "
fi
echo -n " checking..."
cd php
rm -f ./aclocal.m4 >> "$DIR/install.log" 2>&1
rm -rf ./autom4te.cache/ >> "$DIR/install.log" 2>&1
rm -f ./configure >> "$DIR/install.log" 2>&1
./buildconf --force >> "$DIR/install.log" 2>&1
#hack for curl with pkg-config (ext/curl doesn't give --static to pkg-config on static builds)
if [ "$DO_STATIC" == "yes" ]; then
if [ -z "$PKG_CONFIG" ]; then
PKG_CONFIG="$(which pkg-config)" || true
fi
if [ ! -z "$PKG_CONFIG" ]; then
#only export this if pkg-config exists, otherwise leave it (it'll fall back to curl-config)
echo '#!/bin/sh' > "$BUILD_DIR/pkg-config-wrapper"
echo 'exec '$PKG_CONFIG' "$@" --static' >> "$BUILD_DIR/pkg-config-wrapper"
chmod +x "$BUILD_DIR/pkg-config-wrapper"
export PKG_CONFIG="$BUILD_DIR/pkg-config-wrapper"
fi
fi
if [ "$IS_CROSSCOMPILE" == "yes" ]; then
sed -i=".backup" 's/pthreads_working=no/pthreads_working=yes/' ./configure
if [ "$IS_WINDOWS" != "yes" ]; then
if [ "$COMPILE_FOR_ANDROID" == "no" ]; then
export LIBS="$LIBS -lpthread -ldl -lresolv"
else
export LIBS="$LIBS -lpthread -lresolv"
fi
else
export LIBS="$LIBS -lpthread"
fi
mv ext/mysqlnd/config9.m4 ext/mysqlnd/config.m4
sed -i=".backup" "s{ext/mysqlnd/php_mysqlnd_config.h{config.h{" ext/mysqlnd/mysqlnd_portability.h
elif [ "$DO_STATIC" == "yes" ]; then
export LIBS="$LIBS -ldl"
fi
if [ "$IS_WINDOWS" != "yes" ]; then
HAVE_PCNTL="--enable-pcntl"
else
HAVE_PCNTL="--disable-pcntl"
cp -f ./win32/build/config.* ./main >> "$DIR/install.log" 2>&1
sed 's:@PREFIX@:$DIR/bin/php7:' ./main/config.w32.h.in > ./wmain/config.w32.h 2>> "$DIR/install.log"
fi
if [[ "$(uname -s)" == "Darwin" ]] && [[ "$IS_CROSSCOMPILE" != "yes" ]]; then
sed -i=".backup" 's/flock_type=unknown/flock_type=bsd/' ./configure
export EXTRA_CFLAGS=-lresolv
fi
if [[ "$COMPILE_DEBUG" == "yes" ]]; then
HAS_DEBUG="--enable-debug"
else
HAS_DEBUG="--disable-debug"
fi
if [ "$FSANITIZE_OPTIONS" != "" ]; then
CFLAGS="$CFLAGS -fsanitize=$FSANITIZE_OPTIONS -fno-omit-frame-pointer"
CXXFLAGS="$CXXFLAGS -fsanitize=$FSANITIZE_OPTIONS -fno-omit-frame-pointer"
LDFLAGS="-fsanitize=$FSANITIZE_OPTIONS $LDFLAGS"
fi
RANLIB=$RANLIB CFLAGS="$CFLAGS $FLAGS_LTO" CXXFLAGS="$CXXFLAGS $FLAGS_LTO" LDFLAGS="$LDFLAGS $FLAGS_LTO" ./configure $PHP_OPTIMIZATION --prefix="$INSTALL_DIR" \
--exec-prefix="$INSTALL_DIR" \
--with-curl \
--with-zlib \
--with-zlib \
--with-gmp \
--with-yaml \
--with-openssl \
--with-zip \
--with-libdeflate="$INSTALL_DIR" \
$HAS_LIBJPEG \
$HAS_GD \
--with-leveldb="$INSTALL_DIR" \
--without-readline \
$HAS_DEBUG \
--enable-chunkutils2 \
--enable-morton \
--enable-mbstring \
--disable-mbregex \
--enable-calendar \
--enable-pthreads \
--enable-fileinfo \
--with-libxml \
--enable-xml \
--enable-dom \
--enable-simplexml \
--enable-xmlreader \
--enable-xmlwriter \
--disable-cgi \
--disable-phpdbg \
--disable-session \
--without-pear \
--without-iconv \
--with-pdo-sqlite \
--with-pdo-mysql \
--with-pic \
--enable-phar \
--enable-ctype \
--enable-sockets \
--enable-shared=no \
--enable-static=yes \
--enable-shmop \
--enable-zts \
--disable-short-tags \
$HAVE_PCNTL \
$HAVE_MYSQLI \
--enable-bcmath \
--enable-cli \
--enable-ftp \
--enable-opcache=$HAVE_OPCACHE \
--enable-opcache-jit=$HAVE_OPCACHE \
--enable-zstd \
--enable-igbinary \
--enable-vanillagenerator \
--with-crypto \
--enable-recursionguard \
--enable-xxhash \
$HAVE_VALGRIND \
$CONFIGURE_FLAGS >> "$DIR/install.log" 2>&1
echo -n " compiling..."
if [ "$COMPILE_FOR_ANDROID" == "yes" ]; then
sed -i=".backup" 's/-export-dynamic/-all-static/g' Makefile
fi
sed -i=".backup" 's/PHP_BINARIES. pharcmd$/PHP_BINARIES)/g' Makefile
sed -i=".backup" 's/install-programs install-pharcmd$/install-programs/g' Makefile
if [[ "$DO_STATIC" == "yes" ]]; then
sed -i=".backup" 's/--mode=link $(CC)/--mode=link $(CXX)/g' Makefile
fi
make -j $THREADS >> "$DIR/install.log" 2>&1
echo -n " installing..."