forked from openscad/openscad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmacosx-build-dependencies.sh
executable file
·1043 lines (933 loc) · 34.1 KB
/
macosx-build-dependencies.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
#
# This script builds all library dependencies of OpenSCAD for Mac OS X.
# The libraries will be build in 64-bit mode and backwards compatible
# with 10.13 "High Sierra".
#
# This script must be run from the OpenSCAD source root directory.
# By default, dependencies will be built for the local architecture.
#
# Usage: macosx-build-dependencies.sh [-dflaxv] [<package>]
# -d Build for deployment (if not specified, e.g. Sparkle won't be built)
# -f Force build even if package is installed
# -l MINUTES Build time limit in minutes
# -a Build arm64 binaries
# -x Build x86_64 binaries
# -v Verbose
#
# Prerequisites: automake, libtool, cmake, pkg-config, wget, meson
#
set -e
if [ "`echo $* | grep \\\-v `" ]; then
set -x
fi
BASEDIR=$PWD/../libraries
OPENSCADDIR=$PWD
SRCDIR=$BASEDIR/src
DEPLOYDIR=$BASEDIR/install
MAC_OSX_VERSION_MIN=10.13
OPTION_DEPLOY=false
OPTION_FORCE=0
OPTION_ARM64=false
OPTION_X86_64=false
PACKAGES=(
"double_conversion 3.2.1"
"boost 1.81.0"
"eigen 3.4.0"
"gmp 6.2.1 patch"
"mpfr 4.2.0"
"glew 2.2.0"
"gettext 0.21.1"
"libffi REMOVE"
"freetype 2.12.1"
"ragel REMOVE"
"harfbuzz 6.0.0"
"libzip 1.9.2"
"libxml2 REMOVE"
"libuuid 1.6.2"
"fontconfig 2.14.1"
"hidapi 0.12.0"
"lib3mf 2.2.0"
# FIXME: Re-evaluate patches if bumping glib past 2.76.3
"glib2 2.76.3"
"pixman 0.42.2"
"cairo 1.18.0"
"cgal 5.5"
"qt5 5.15.7 patch"
"opencsg 1.6.0"
"qscintilla 2.13.3"
"onetbb 2021.11.0"
)
DEPLOY_PACKAGES=(
"sparkle 1.27.1"
)
printUsage()
{
echo "Usage: $0 [-dflaxv] [<package>]"
echo
echo " -d Build for deployment"
echo " -f Force build even if package is installed"
echo " -l MINUTES Build time limit in minutes"
echo " -a Build arm64 binaries"
echo " -x Build x86_64 binaries"
echo " -v Verbose"
echo
echo " If <package> is not specified, builds all packages"
}
# Outputs all package names
all_packages()
{
for i in $(seq 0 $(( ${#PACKAGES[@]} - 1 )) ); do
local p=${PACKAGES[$i]}
echo -n "${p%%\ *} " # Cut at first space
done
}
# Usage: package_version <package>
# Outputs the package version for the given package
package_version()
{
for i in $(seq 0 $(( ${#PACKAGES[@]} - 1 )) ); do
local p=${PACKAGES[$i]}
if [ "$1" = "${p%%\ *}" ]; then
echo "${p#*\ }" # cut until first space
return 0
fi
done
return 1
}
# Usage: check_version_file <package> <version> [<patch>]
# Checks if $DEPLOYDIR/fileshare/macosx-build-dependencies/$package.version exists
# and its contents equals $version[.$patch]
# Returns success (0) if it does
check_version_file()
{
versionfile="$DEPLOYDIR/share/macosx-build-dependencies/$1.version"
if [ -f $versionfile ]; then
if [ -z "$2" ]; then
return 0
else
[[ $(cat $versionfile) == $2${3:+.}$3 ]]
return $?
fi
else
return 1
fi
}
# Usage: is_installed <package> [<version>]
# Returns success (0) if the/a version of the package is already installed
is_installed()
{
if check_version_file $1 $2 $3; then
return 0
else
return 1
fi
}
# Usage: build <package> <version>
build()
{
local package=$1
local version=$2
local patch=$3
if [[ $version == "REMOVE" ]]; then
local should_remove=$(( $OPTION_FORCE == 1 ))
if [[ $should_remove == 0 ]]; then
if is_installed $package; then
should_remove=1
else
echo "$package not installed - not removing"
fi
fi
if [[ $should_remove == 1 ]]; then
set -e
remove_$package
set +e
fi
else
local should_install=$(( $OPTION_FORCE == 1 ))
if [[ $should_install == 0 ]]; then
if ! is_installed $package $version $patch; then
should_install=1
else
echo "$package $version $patch already installed - not building"
fi
fi
if [[ $should_install == 1 ]]; then
set -e
echo "Building $package $version $patch..."
build_$package $version $patch
echo $version${patch:+.}$patch > $DEPLOYDIR/share/macosx-build-dependencies/$package.version
set +e
fi
fi
}
build_double_conversion()
{
version="$1"
cd "$BASEDIR"/src
rm -rf "double-conversion-$version"
if [ ! -f "double-conversion-$version.tar.gz" ]; then
curl -L "https://github.com/google/double-conversion/archive/v$version.tar.gz" -o double-conversion-$version.tar.gz
fi
tar xzf "double-conversion-$version.tar.gz"
cd "double-conversion-$version"
cmake -DCMAKE_INSTALL_PREFIX=$DEPLOYDIR -DCMAKE_OSX_DEPLOYMENT_TARGET="$MAC_OSX_VERSION_MIN" -DCMAKE_OSX_ARCHITECTURES="$ARCHS_COMBINED" .
make -j$NUMCPU
make install
}
build_qt5()
{
version=$1
cd $BASEDIR/src
v=(${version//./ }) # Split into array
rm -rf qt-everywhere-src-$version
if [ ! -f qt-everywhere-opensource-src-$version.tar.xz ]; then
curl -LO --insecure https://download.qt.io/official_releases/qt/${v[0]}.${v[1]}/$version/single/qt-everywhere-opensource-src-$version.tar.xz
fi
tar xzf qt-everywhere-opensource-src-$version.tar.xz
cd qt-everywhere-src-$version
patch -p1 < $OPENSCADDIR/patches/qt5/qt-5.15-macos-CGColorSpace.patch
# Build each arch separately
for arch in ${ARCHS[*]}; do
mkdir build-$arch
cd build-$arch
../configure -prefix $DEPLOYDIR -release -opensource -confirm-license \
-nomake examples -nomake tests \
-no-xcb -no-glib -no-harfbuzz -no-cups \
-skip qt3d -skip qtactiveqt -skip qtandroidextras -skip qtcharts -skip qtconnectivity -skip qtdatavis3d \
-skip qtdeclarative -skip qtdoc -skip qtgraphicaleffects -skip qtimageformats -skip qtlocation -skip qtlottie \
-skip qtnetworkauth -skip qtpurchasing -skip qtquick3d -skip qtquickcontrols \
-skip qtquickcontrols2 -skip qtquicktimeline -skip qtremoteobjects -skip qtscript -skip qtscxml -skip qtsensors \
-skip qtserialbus -skip qtserialport -skip qtspeech -skip qttranslations -skip qtvirtualkeyboard \
-skip qtwayland -skip qtwebchannel -skip qtwebengine -skip qtwebglplugin -skip qtwebsockets -skip qtwebview \
-skip qtwinextras -skip qtx11extras -skip qtxmlpatterns \
-no-feature-assistant -no-feature-designer -no-feature-distancefieldgenerator -no-feature-kmap2qmap \
-no-feature-linguist -no-feature-makeqpf -no-feature-qev -no-feature-qtattributionsscanner \
-no-feature-qtdiag -no-feature-qtpaths -no-feature-qtplugininfo \
-no-feature-openal -no-feature-avfoundation -no-feature-gstreamer -no-feature-qdoc \
-device-option QMAKE_APPLE_DEVICE_ARCHS=$arch
make -j"$NUMCPU"
make -j"$NUMCPU" install INSTALL_ROOT=$PWD/install/
cd ..
done
# Install the first arch
cp -R build-${ARCHS[0]}/install/$DEPLOYDIR/* $DEPLOYDIR
# If we're building for multiple archs, create fat binaries
if (( ${#ARCHS[@]} > 1 )); then
frameworks="QtConcurrent QtCore QtDBus QtGamepad QtGui QtMacExtras QtMultimedia QtMultimediaWidgets QtNetwork QtOpenGL QtPrintSupport QtSql QtSvg QtTest QtWidgets QtXml"
for framework in $frameworks; do
LIBS=()
for arch in ${ARCHS[*]}; do
LIBS+=(build-$arch/install/$DEPLOYDIR/lib/$framework.framework/Versions/Current/$framework)
done
lipo -create ${LIBS[@]} -output $DEPLOYDIR/lib/$framework.framework/Versions/Current/$framework
done
# We also need to merge plugins into universal binaries
for plugin in $(find $DEPLOYDIR/plugins -name "*.dylib"); do
libname=$(basename $plugin)
lipo -create $(find build-*/install -name $libname) -output $plugin
done
fi
}
build_qscintilla()
{
version=$1
cd $BASEDIR/src
rm -rf QScintilla_src-$version
QSCINTILLA_FILENAME="QScintilla_src-$version.tar.gz"
if [ ! -f "${QSCINTILLA_FILENAME}" ]; then
curl -LO https://www.riverbankcomputing.com/static/Downloads/QScintilla/$version/"${QSCINTILLA_FILENAME}"
fi
tar xzf "${QSCINTILLA_FILENAME}"
cd QScintilla*/src
qmake qscintilla.pro QMAKE_APPLE_DEVICE_ARCHS="${ARCHS[*]}"
make -j"$NUMCPU" install
install_name_tool -id @rpath/libqscintilla2_qt5.dylib $DEPLOYDIR/lib/libqscintilla2_qt5.dylib
}
build_gmp()
{
version=$1
cd $BASEDIR/src
rm -rf gmp-$version
if [ ! -f gmp-$version.tar.bz2 ]; then
# FIXME: -k is only to ignore libgmp's expired SSL certificate
curl -kO https://gmplib.org/download/gmp/gmp-$version.tar.bz2
fi
tar xjf gmp-$version.tar.bz2
cd gmp-$version
patch -p1 < $OPENSCADDIR/patches/gmp-macos-x18.patch
# Build each arch separately
for arch in ${ARCHS[*]}; do
mkdir build-$arch
cd build-$arch
../configure --prefix=$DEPLOYDIR CFLAGS="-arch $arch -mmacos-version-min=$MAC_OSX_VERSION_MIN" LDFLAGS="-arch $arch -mmacos-version-min=$MAC_OSX_VERSION_MIN" --enable-cxx --build=$LOCAL_ARCH-apple-darwin --host=$arch-apple-darwin17.0.0
make -j"$NUMCPU" install DESTDIR=$PWD/install/
cd ..
done
# Install the first arch
cp -R build-${ARCHS[0]}/install/$DEPLOYDIR/* $DEPLOYDIR
# If we're building for multiple archs, create fat binaries
if (( ${#ARCHS[@]} > 1 )); then
GMPLIBS=()
GMPXXLIBS=()
for arch in ${ARCHS[*]}; do
GMPLIBS+=(build-$arch/install/$DEPLOYDIR/lib/libgmp.dylib)
GMPXXLIBS+=(build-$arch/install/$DEPLOYDIR/lib/libgmpxx.dylib)
done
lipo -create ${GMPLIBS[@]} -output $DEPLOYDIR/lib/libgmp.dylib
lipo -create ${GMPXXLIBS[@]} -output $DEPLOYDIR/lib/libgmpxx.dylib
fi
install_name_tool -id @rpath/libgmp.dylib $DEPLOYDIR/lib/libgmp.dylib
install_name_tool -id @rpath/libgmpxx.dylib $DEPLOYDIR/lib/libgmpxx.dylib
install_name_tool -change $DEPLOYDIR/lib/libgmp.10.dylib @rpath/libgmp.dylib $DEPLOYDIR/lib/libgmpxx.dylib
}
build_mpfr()
{
version=$1
cd $BASEDIR/src
rm -rf mpfr-$version
if [ ! -f mpfr-$version.tar.bz2 ]; then
curl -L -O http://www.mpfr.org/mpfr-$version/mpfr-$version.tar.bz2
fi
tar xjf mpfr-$version.tar.bz2
cd mpfr-$version
# Build each arch separately
for i in ${!ARCHS[@]}; do
arch=${ARCHS[$i]}
mkdir build-$arch
cd build-$arch
../configure --prefix=$DEPLOYDIR --with-gmp=$DEPLOYDIR CFLAGS="-arch $arch -mmacos-version-min=$MAC_OSX_VERSION_MIN" LDFLAGS="-arch $arch -mmacos-version-min=$MAC_OSX_VERSION_MIN" --build=$LOCAL_GNU_ARCH-apple-darwin --host=${GNU_ARCHS[$i]}-apple-darwin17.0.0
make -j"$NUMCPU" install DESTDIR=$PWD/install/
cd ..
done
# Install the first arch
cp -R build-${ARCHS[0]}/install/$DEPLOYDIR/* $DEPLOYDIR
# If we're building for multiple archs, create fat binaries
if (( ${#ARCHS[@]} > 1 )); then
LIBS=()
for arch in ${ARCHS[*]}; do
LIBS+=(build-$arch/install/$DEPLOYDIR/lib/libmpfr.dylib)
done
lipo -create ${LIBS[@]} -output $DEPLOYDIR/lib/libmpfr.dylib
fi
install_name_tool -id @rpath/libmpfr.dylib $DEPLOYDIR/lib/libmpfr.dylib
}
build_boost()
{
version=$1
bversion=`echo $version | tr "." "_"`
cd $BASEDIR/src
rm -rf boost_$bversion
if [ ! -f boost_$bversion.tar.bz2 ]; then
curl -LO http://downloads.sourceforge.net/project/boost/boost/$version/boost_$bversion.tar.bz2
fi
tar xjf boost_$bversion.tar.bz2
cd boost_$bversion
ARCH_FLAGS=()
for arch in ${ARCHS[*]}; do
ARCH_FLAGS+=(-arch $arch)
done
./bootstrap.sh --prefix=$DEPLOYDIR --with-libraries=thread,program_options,filesystem,chrono,system,regex,date_time,atomic
./b2 -j"$NUMCPU" -d+2 $BOOST_TOOLSET cflags="-mmacosx-version-min=$MAC_OSX_VERSION_MIN ${ARCH_FLAGS[*]}" linkflags="-mmacosx-version-min=$MAC_OSX_VERSION_MIN ${ARCH_FLAGS[*]} -headerpad_max_install_names" install
}
build_cgal()
{
version=$1
cd $BASEDIR/src
rm -rf CGAL-$version
if [ ! -f CGAL-$version.tar.xz ]; then
curl -L https://github.com/CGAL/cgal/releases/download/v${version}/CGAL-${version}-library.tar.xz --output CGAL-${version}.tar.xz
fi
tar xzf CGAL-$version.tar.xz
cd CGAL-$version
cmake . -DCMAKE_INSTALL_PREFIX=$DEPLOYDIR -DCMAKE_BUILD_TYPE=Release -DGMP_INCLUDE_DIR=$DEPLOYDIR/include -DGMP_LIBRARIES=$DEPLOYDIR/lib/libgmp.dylib -DGMPXX_LIBRARIES=$DEPLOYDIR/lib/libgmpxx.dylib -DGMPXX_INCLUDE_DIR=$DEPLOYDIR/include -DMPFR_INCLUDE_DIR=$DEPLOYDIR/include -DMPFR_LIBRARIES=$DEPLOYDIR/lib/libmpfr.dylib -DWITH_CGAL_Qt5=OFF -DWITH_CGAL_ImageIO=OFF -DBUILD_SHARED_LIBS=TRUE -DCMAKE_OSX_DEPLOYMENT_TARGET="$MAC_OSX_VERSION_MIN" -DCMAKE_OSX_ARCHITECTURES="$ARCHS_COMBINED" -DBOOST_ROOT=$DEPLOYDIR -DBoost_USE_MULTITHREADED=false
make -j"$NUMCPU" install
make install
if [[ $version =~ 4.* ]]; then
install_name_tool -id @rpath/libCGAL.dylib $DEPLOYDIR/lib/libCGAL.dylib
install_name_tool -id @rpath/libCGAL_Core.dylib $DEPLOYDIR/lib/libCGAL_Core.dylib
install_name_tool -change libCGAL.11.dylib @rpath/libCGAL.dylib $DEPLOYDIR/lib/libCGAL_Core.dylib
fi
}
build_onetbb()
{
version=$1
cd $BASEDIR/src
rm -rf oneTBB-$version
if [ ! -f oneTBB-$version.tar.gz ]; then
curl -L https://github.com/oneapi-src/oneTBB/archive/refs/tags/v${version}.tar.gz --output oneTBB-$version.tar.gz
fi
tar xzf oneTBB-$version.tar.gz
cd oneTBB-$version
cmake . -DCMAKE_INSTALL_PREFIX=$DEPLOYDIR -DCMAKE_BUILD_TYPE=Release -DTBB_TEST=OFF -DCMAKE_OSX_DEPLOYMENT_TARGET="$MAC_OSX_VERSION_MIN" -DCMAKE_OSX_ARCHITECTURES="$ARCHS_COMBINED" -DBOOST_ROOT=$DEPLOYDIR -DBoost_USE_MULTITHREADED=false
make -j"$NUMCPU" install
make install
# install_name_tool -id @rpath/libtbb.dylib $DEPLOYDIR/lib/libtbb.dylib
# install_name_tool -id @rpath/libtbbmalloc.dylib $DEPLOYDIR/lib/libtbbmalloc.dylib
}
build_glew()
{
version=$1
cd $BASEDIR/src
rm -rf glew-$version
if [ ! -f glew-$version.tgz ]; then
curl -LO http://downloads.sourceforge.net/project/glew/glew/$version/glew-$version.tgz
fi
tar xzf glew-$version.tgz
cd glew-$version
mkdir -p $DEPLOYDIR/lib/pkgconfig
ARCH_FLAGS=()
for arch in ${ARCHS[*]}; do
ARCH_FLAGS+=(-arch $arch)
done
make GLEW_PREFIX=$DEPLOYDIR GLEW_DEST=$DEPLOYDIR CFLAGS.EXTRA="-no-cpp-precomp -dynamic -fno-common -mmacosx-version-min=$MAC_OSX_VERSION_MIN ${ARCH_FLAGS[*]}" LDFLAGS.EXTRA="-install_name @rpath/libGLEW.dylib -mmacosx-version-min=$MAC_OSX_VERSION_MIN ${ARCH_FLAGS[*]}" POPT="-Os" STRIP= install
}
build_opencsg()
{
version=$1
cd $BASEDIR/src
rm -rf OpenCSG-$version
if [ ! -f OpenCSG-$version.tar.gz ]; then
curl -O http://www.opencsg.org/OpenCSG-$version.tar.gz
fi
tar xzf OpenCSG-$version.tar.gz
cd OpenCSG-$version
patch -p1 < $OPENSCADDIR/patches/OpenCSG-$version-MacOSX-port.patch
qmake -r INSTALLDIR=$DEPLOYDIR QMAKE_APPLE_DEVICE_ARCHS="${ARCHS[*]}"
make install
install_name_tool -id @rpath/libopencsg.dylib $DEPLOYDIR/lib/libopencsg.dylib
}
build_eigen()
{
version=$1
cd $BASEDIR/src
rm -rf eigen-$version
if [ ! -f eigen-$version.tar.bz2 ]; then
curl -LO https://gitlab.com/libeigen/eigen/-/archive/$version/eigen-$version.tar.bz2
fi
EIGENDIR=`tar tjf eigen-$version.tar.bz2 | head -1 | cut -f1 -d"/"`
rm -rf "./$EIGENDIR"
tar xjf eigen-$version.tar.bz2
ln -s "./$EIGENDIR" eigen-$version || true
cd eigen-$version
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=$DEPLOYDIR -DEIGEN_TEST_NOQT=TRUE -DCMAKE_OSX_DEPLOYMENT_TARGET="$MAC_OSX_VERSION_MIN" -DCMAKE_OSX_ARCHITECTURES="$ARCHS_COMBINED" ..
make -j"$NUMCPU" install
}
# Usage:
# build_sparkle <githubuser>:<commitID>
# build_sparkle <version>
build_sparkle()
{
# Binary install:
version=$1
echo "Installing sparkle" $version "..."
cd $BASEDIR/src
rm -rf Sparkle-$version
if [ ! -f Sparkle-$version.tar.xz ]; then
curl -LO https://github.com/sparkle-project/Sparkle/releases/download/$version/Sparkle-$version.tar.xz
fi
mkdir Sparkle-$version
cd Sparkle-$version
tar xjf ../Sparkle-$version.tar.xz
# Make sure the destination dir is clean before overwriting
rm -rf $DEPLOYDIR/lib/Sparkle.framework
cp -Rf Sparkle.framework $DEPLOYDIR/lib/
# Build from source:
# v=$1
# github=${1%%:*} # Cut at first colon
# version=${1#*:} # cut until first colon
#
# # Let Sparkle use the default compiler
# unset CC
# unset CXX
#
# cd $BASEDIR/src
# rm -rf Sparkle-$version
# if [ ! -f Sparkle-$version.zip ]; then
# curl -o Sparkle-$version.zip https://nodeload.github.com/$github/Sparkle/zip/$version
# fi
# unzip -q Sparkle-$version.zip
# cd Sparkle-$version
# patch -p1 < $OPENSCADDIR/patches/sparkle.patch
# xcodebuild clean
# xcodebuild -arch x86_64
# rm -rf $DEPLOYDIR/lib/Sparkle.framework
# cp -Rf build/Release/Sparkle.framework $DEPLOYDIR/lib/
# Install_name_tool -id $DEPLOYDIR/lib/Sparkle.framework/Versions/A/Sparkle $DEPLOYDIR/lib/Sparkle.framework/Sparkle
}
build_freetype()
{
version="$1"
cd "$BASEDIR"/src
rm -rf "freetype-$version"
if [ ! -f "freetype-$version.tar.gz" ]; then
curl --insecure -LO "http://downloads.sourceforge.net/project/freetype/freetype2/$version/freetype-$version.tar.gz"
fi
tar xzf "freetype-$version.tar.gz"
cd "freetype-$version"
export FREETYPE_CFLAGS="-I$DEPLOYDIR/include -I$DEPLOYDIR/include/freetype2"
export FREETYPE_LIBS="-L$DEPLOYDIR/lib -lfreetype"
# Build each arch separately
for i in ${!ARCHS[@]}; do
arch=${ARCHS[$i]}
mkdir build-$arch
cd build-$arch
PKG_CONFIG_LIBDIR="$DEPLOYDIR/lib/pkgconfig" ../configure --prefix=$DEPLOYDIR CFLAGS="-arch $arch -mmacos-version-min=$MAC_OSX_VERSION_MIN" LDFLAGS="-arch $arch -mmacos-version-min=$MAC_OSX_VERSION_MIN" --without-png --without-harfbuzz --host=${GNU_ARCHS[$i]}-apple-darwin17.0.0
make -j"$NUMCPU" install DESTDIR=$PWD/install/
cd ..
done
# Install the first arch
cp -R build-${ARCHS[0]}/install/$DEPLOYDIR/* $DEPLOYDIR
# If we're building for multiple archs, create fat binaries
if (( ${#ARCHS[@]} > 1 )); then
LIBS=()
for arch in ${ARCHS[*]}; do
LIBS+=(build-$arch/install/$DEPLOYDIR/lib/libfreetype.dylib)
done
lipo -create ${LIBS[@]} -output $DEPLOYDIR/lib/libfreetype.dylib
fi
install_name_tool -id @rpath/libfreetype.dylib $DEPLOYDIR/lib/libfreetype.dylib
}
build_libzip()
{
version="$1"
cd "$BASEDIR"/src
rm -rf "libzip-$version"
if [ ! -f "libzip-$version.tar.gz" ]; then
# Using wget instead of curl for now, due to a macOS 12 OpenSSL bug:
# curl: (35) error:06FFF089:digital envelope routines:CRYPTO_internal:bad key length
wget "https://libzip.org/download/libzip-$version.tar.gz"
fi
tar xzf "libzip-$version.tar.gz"
cd "libzip-$version"
cmake -DCMAKE_INSTALL_PREFIX=$DEPLOYDIR -DCMAKE_OSX_DEPLOYMENT_TARGET="$MAC_OSX_VERSION_MIN" -DCMAKE_OSX_ARCHITECTURES="$ARCHS_COMBINED" -DENABLE_GNUTLS=OFF -DENABLE_ZSTD=OFF .
make -j$NUMCPU
make install
install_name_tool -id @rpath/libzip.dylib $DEPLOYDIR/lib/libzip.dylib
}
remove_libxml2()
{
echo "Removing libxml2..."
find $DEPLOYDIR -name "*libxml*" -prune -exec rm -rf {} \;
}
build_libuuid()
{
version=$1
cd $BASEDIR/src
rm -rf uuid-$version
if [ ! -f uuid-$version.tar.gz ]; then
curl -L https://mirrors.ocf.berkeley.edu/debian/pool/main/o/ossp-uuid/ossp-uuid_$version.orig.tar.gz -o uuid-$version.tar.gz
fi
tar xzf uuid-$version.tar.gz
cd uuid-$version
patch -p1 < $OPENSCADDIR/patches/uuid-1.6.2.patch
# Update old config.sub to get aarch64 support
cp $OPENSCADDIR/patches/uuid-config.sub ./config.sub
# Build each arch separately
for i in ${!ARCHS[@]}; do
arch=${ARCHS[$i]}
mkdir build-$arch
cd build-$arch
# ac_cv_va_copy=yes is a workaround for a bug uuid's build system causing the va_copy() check
# to not work while cross compiling
../configure --prefix=$DEPLOYDIR CFLAGS="-arch $arch -mmacos-version-min=$MAC_OSX_VERSION_MIN" LDFLAGS="-arch $arch -mmacos-version-min=$MAC_OSX_VERSION_MIN" --without-perl --without-php --without-pgsql --host=${GNU_ARCHS[$i]}-apple-darwin17.0.0 ac_cv_va_copy=yes
make -j"$NUMCPU"
make install DESTDIR=$PWD/install/
cd ..
done
# Install the first arch
cp -R build-${ARCHS[0]}/install/$DEPLOYDIR/* $DEPLOYDIR
# If we're building for multiple archs, create fat binaries
if (( ${#ARCHS[@]} > 1 )); then
LIBS=()
for arch in ${ARCHS[*]}; do
LIBS+=(build-$arch/install/$DEPLOYDIR/lib/libuuid.dylib)
done
lipo -create ${LIBS[@]} -output $DEPLOYDIR/lib/libuuid.dylib
fi
install_name_tool -id @rpath/libuuid.dylib $DEPLOYDIR/lib/libuuid.dylib
}
build_fontconfig()
{
version=$1
cd "$BASEDIR"/src
rm -rf "fontconfig-$version"
if [ ! -f "fontconfig-$version.tar.gz" ]; then
curl -LO "https://www.freedesktop.org/software/fontconfig/release/fontconfig-$version.tar.gz"
fi
tar xzf "fontconfig-$version.tar.gz"
cd "fontconfig-$version"
# patch -p1 < $OPENSCADDIR/patches/fontconfig-arm64.patch
# Build each arch separately
for i in ${!ARCHS[@]}; do
arch=${ARCHS[$i]}
mkdir build-$arch
cd build-$arch
# FIXME: The "ac_cv_func_mkostemp=no" is a workaround for fontconfig's autotools config not respecting any passed
# -no_weak_imports linker flag. This may be improved in future versions of fontconfig
../configure --prefix=$DEPLOYDIR CFLAGS="-arch $arch -mmacos-version-min=$MAC_OSX_VERSION_MIN" LDFLAGS="-arch $arch -mmacos-version-min=$MAC_OSX_VERSION_MIN -Wl,-rpath,$DEPLOYDIR/lib" --enable-libxml2 --host=${GNU_ARCHS[$i]}-apple-darwin17.0.0 ac_cv_func_mkostemp=no
make -j"$NUMCPU" install DESTDIR=$PWD/install/
cd ..
done
# Install the first arch
cp -R build-${ARCHS[0]}/install/$DEPLOYDIR/* $DEPLOYDIR
# If we're building for multiple archs, create fat binaries
if (( ${#ARCHS[@]} > 1 )); then
LIBS=()
for arch in ${ARCHS[*]}; do
LIBS+=(build-$arch/install/$DEPLOYDIR/lib/libfontconfig.dylib)
done
lipo -create ${LIBS[@]} -output $DEPLOYDIR/lib/libfontconfig.dylib
fi
install_name_tool -id @rpath/libfontconfig.dylib $DEPLOYDIR/lib/libfontconfig.dylib
}
remove_libffi()
{
echo "Removing libffi..."
find $DEPLOYDIR -type f -name "ffi*" -o -name "libffi*" -exec rm -f {} \;
}
build_gettext()
{
version="$1"
cd "$BASEDIR"/src
rm -rf "gettext-$version"
if [ ! -f "gettext-$version.tar.gz" ]; then
curl --insecure -LO "http://ftpmirror.gnu.org/gettext/gettext-$version.tar.gz"
fi
tar xzf "gettext-$version.tar.gz"
cd "gettext-$version"
# Build each arch separately
for i in ${!ARCHS[@]}; do
arch=${ARCHS[$i]}
mkdir build-$arch
cd build-$arch
../configure --prefix=$DEPLOYDIR CFLAGS="-arch $arch -mmacos-version-min=$MAC_OSX_VERSION_MIN" CXXFLAGS="-arch $arch -mmacos-version-min=$MAC_OSX_VERSION_MIN" LDFLAGS="-arch $arch -mmacos-version-min=$MAC_OSX_VERSION_MIN -Wl,-rpath,$DEPLOYDIR/lib" --disable-shared --with-included-glib --with-included-gettext --with-included-libunistring --disable-java --disable-csharp --host=${GNU_ARCHS[$i]}-apple-darwin17.0.0
make -j"$NUMCPU"
make -j"$NUMCPU" install DESTDIR=$PWD/install/
cd ..
done
# Install the first arch
cp -R build-${ARCHS[0]}/install/$DEPLOYDIR/* $DEPLOYDIR
# If we're building for multiple archs, create fat binaries
if (( ${#ARCHS[@]} > 1 )); then
LIBS=()
for arch in ${ARCHS[*]}; do
LIBS+=(build-$arch/install/$DEPLOYDIR/lib/libintl.a)
done
lipo -create ${LIBS[@]} -output $DEPLOYDIR/lib/libintl.a
fi
}
build_glib2()
{
version="$1"
cd "$BASEDIR"/src
rm -rf "glib-$version"
maj_min_version="${version%.*}" #Drop micro
if [ ! -f "glib-$version.tar.xz" ]; then
curl -LO "https://ftp.gnome.org/pub/gnome/sources/glib/$maj_min_version/glib-$version.tar.xz"
fi
tar xJf "glib-$version.tar.xz"
cd "glib-$version"
# FIXME: Once bumping past glib-2.76.3, we may not need these patches
patch -p1 < $OPENSCADDIR/patches/glib-iconv-macos.patch
patch -p1 < $OPENSCADDIR/patches/glib-pcre-macos.patch
# Build each arch separately
for arch in ${ARCHS[*]}; do
sed -e "s,@MAC_OSX_VERSION_MIN@,$MAC_OSX_VERSION_MIN,g" -e "s,@DEPLOYDIR@,$DEPLOYDIR,g" $OPENSCADDIR/scripts/macos-$arch.txt.in > macos-$arch.txt
meson setup --prefix $DEPLOYDIR --cross-file macos-$arch.txt --force-fallback-for libpcre2-8 -Dgtk_doc=false -Dman=false -Ddtrace=false -Dtests=false build-$arch
meson compile -C build-$arch
DESTDIR=install/ meson install -C build-$arch
done
# Install the first arch
cp -R build-${ARCHS[0]}/install/$DEPLOYDIR/* $DEPLOYDIR
# If we're building for multiple archs, create fat binaries
if (( ${#ARCHS[@]} > 1 )); then
LIBS=()
for arch in ${ARCHS[*]}; do
LIBS+=(build-$arch/install/$DEPLOYDIR/lib/libglib-2.0.dylib)
done
lipo -create ${LIBS[@]} -output $DEPLOYDIR/lib/libglib-2.0.dylib
fi
install_name_tool -id @rpath/libglib-2.0.dylib $DEPLOYDIR/lib/libglib-2.0.dylib
}
remove_ragel()
{
echo "Removing ragel..."
find $DEPLOYDIR -type f -name "ragel*" -exec rm -f {} \;
}
build_harfbuzz()
{
version=$1
cd "$BASEDIR"/src
rm -rf "harfbuzz-$version"
if [ ! -f "harfbuzz-$version.tar.xz" ]; then
curl -LO "https://github.com/harfbuzz/harfbuzz/releases/download/$version/harfbuzz-$version.tar.xz"
fi
tar xzf "harfbuzz-$version.tar.xz"
cd "harfbuzz-$version"
# Build each arch separately
for i in ${!ARCHS[@]}; do
arch=${ARCHS[$i]}
mkdir build-$arch
cd build-$arch
PKG_CONFIG_LIBDIR="$DEPLOYDIR/lib/pkgconfig" ../configure --prefix=$DEPLOYDIR CFLAGS="-arch $arch -mmacos-version-min=$MAC_OSX_VERSION_MIN" CXXFLAGS="-arch $arch -mmacos-version-min=$MAC_OSX_VERSION_MIN" LDFLAGS="-arch $arch -mmacos-version-min=$MAC_OSX_VERSION_MIN" --with-freetype=yes --with-gobject=no --with-cairo=no --with-icu=no --with-coretext=auto --with-glib=no --disable-gtk-doc-html --host=${GNU_ARCHS[$i]}-apple-darwin17.0.0
make -j"$NUMCPU" install DESTDIR=$PWD/install/
cd ..
done
# Install the first arch
cp -R build-${ARCHS[0]}/install/$DEPLOYDIR/* $DEPLOYDIR
# If we're building for multiple archs, create fat binaries
if (( ${#ARCHS[@]} > 1 )); then
LIBS=()
for arch in ${ARCHS[*]}; do
LIBS+=(build-$arch/install/$DEPLOYDIR/lib/libharfbuzz.dylib)
done
lipo -create ${LIBS[@]} -output $DEPLOYDIR/lib/libharfbuzz.dylib
fi
install_name_tool -id @rpath/libharfbuzz.dylib $DEPLOYDIR/lib/libharfbuzz.dylib
}
build_hidapi()
{
version=$1
cd "$BASEDIR"/src
rm -rf "hidapi-hidapi-$version"
if [ ! -f "hidapi-$version.zip" ]; then
curl --insecure -LO "https://github.com/libusb/hidapi/archive/hidapi-${version}.zip"
fi
unzip "hidapi-$version.zip"
cd "hidapi-hidapi-$version"
./bootstrap # Needed when building from github sources
# Build each arch separately
for i in ${!ARCHS[@]}; do
arch=${ARCHS[$i]}
mkdir build-$arch
cd build-$arch
../configure --prefix=$DEPLOYDIR CFLAGS="-arch $arch -mmacos-version-min=$MAC_OSX_VERSION_MIN" LDFLAGS="-arch $arch -mmacos-version-min=$MAC_OSX_VERSION_MIN" --host=${GNU_ARCHS[$i]}-apple-darwin17.0.0
make -j"$NUMCPU" install DESTDIR=$PWD/install/
cd ..
done
# Install the first arch
cp -R build-${ARCHS[0]}/install/$DEPLOYDIR/* $DEPLOYDIR
# If we're building for multiple archs, create fat binaries
if (( ${#ARCHS[@]} > 1 )); then
LIBS=()
for arch in ${ARCHS[*]}; do
LIBS+=(build-$arch/install/$DEPLOYDIR/lib/libhidapi.dylib)
done
lipo -create ${LIBS[@]} -output $DEPLOYDIR/lib/libhidapi.dylib
fi
install_name_tool -id @rpath/libhidapi.dylib $DEPLOYDIR/lib/libhidapi.dylib
}
build_lib3mf()
{
version=$1
cd $BASEDIR/src
rm -rf lib3mf-$version
if [ ! -f $version.tar.gz ]; then
curl -L https://github.com/3MFConsortium/lib3mf/archive/v$version.tar.gz -o lib3mf-$version.tar.gz
fi
tar xzf lib3mf-$version.tar.gz
cd lib3mf-$version
cmake -DLIB3MF_TESTS=false -DCMAKE_PREFIX_PATH=$DEPLOYDIR -DCMAKE_INSTALL_PREFIX=$DEPLOYDIR -DCMAKE_INSTALL_INCLUDEDIR=include/lib3mf -DCMAKE_OSX_DEPLOYMENT_TARGET="$MAC_OSX_VERSION_MIN" -DCMAKE_OSX_ARCHITECTURES="$ARCHS_COMBINED" .
make -j"$NUMCPU" VERBOSE=1
make -j"$NUMCPU" install
}
build_pixman()
{
version=$1
PIXMAN_DIR="pixman-${version}"
PIXMAN_FILENAME="${PIXMAN_DIR}.tar.gz"
cd $BASEDIR/src
rm -rf "$PIXMAN_DIR"
if [ ! -f "${PIXMAN_FILENAME}" ]; then
curl -LO https://www.cairographics.org/releases/"${PIXMAN_FILENAME}"
fi
tar xzf "${PIXMAN_FILENAME}"
cd "$PIXMAN_DIR"
# Build each arch separately
for i in ${!ARCHS[@]}; do
arch=${ARCHS[$i]}
mkdir build-$arch
cd build-$arch
# libpng is only used for tests, disabling to kill linker warnings since we don't build libpng ourselves
# --disable-arm-a64-neon is due to https://gitlab.freedesktop.org/pixman/pixman/-/issues/59 and
# https://gitlab.freedesktop.org/pixman/pixman/-/issues/69
../configure --prefix=$DEPLOYDIR CFLAGS="-arch $arch -mmacos-version-min=$MAC_OSX_VERSION_MIN" LDFLAGS="-arch $arch -mmacos-version-min=$MAC_OSX_VERSION_MIN" --disable-gtk --disable-libpng --disable-arm-a64-neon --host=${GNU_ARCHS[$i]}-apple-darwin17.0.0
make -j"$NUMCPU" install DESTDIR=$PWD/install/
cd ..
done
# Install the first arch
cp -R build-${ARCHS[0]}/install/$DEPLOYDIR/* $DEPLOYDIR
# If we're building for multiple archs, create fat binaries
if (( ${#ARCHS[@]} > 1 )); then
LIBS=()
for arch in ${ARCHS[*]}; do
LIBS+=(build-$arch/install/$DEPLOYDIR/lib/libpixman-1.dylib)
done
lipo -create ${LIBS[@]} -output $DEPLOYDIR/lib/libpixman-1.dylib
fi
install_name_tool -id @rpath/libpixman-1.dylib $DEPLOYDIR/lib/"libpixman-1.dylib"
}
build_cairo()
{
version=$1
CAIRO_DIR="cairo-${version}"
CAIRO_FILENAME="${CAIRO_DIR}.tar.xz"
cd $BASEDIR/src
rm -rf "$CAIRO_DIR"
if [ ! -f "${CAIRO_FILENAME}" ]; then
curl -LO https://www.cairographics.org/releases/"${CAIRO_FILENAME}"
fi
tar xzf "${CAIRO_FILENAME}"
cd "$CAIRO_DIR"
# FIXME: Cairo cannot disable lzo2, so we patch it
patch -p1 < $OPENSCADDIR/patches/cairo-lzo2-macos.patch
# Build each arch separately
for arch in ${ARCHS[*]}; do
sed -e "s,@MAC_OSX_VERSION_MIN@,$MAC_OSX_VERSION_MIN,g" -e "s,@DEPLOYDIR@,$DEPLOYDIR,g" $OPENSCADDIR/scripts/macos-$arch.txt.in > macos-$arch.txt
meson setup --prefix $DEPLOYDIR --cross-file macos-$arch.txt -Dfreetype=enabled -Dfontconfig=enabled -Dxlib=disabled -Dxcb=disabled -Dpng=disabled -Dglib=disabled -Dtests=disabled -Dquartz=disabled build-$arch
meson compile -C build-$arch
DESTDIR=install/ meson install -C build-$arch
done
# Install the first arch
cp -R build-${ARCHS[0]}/install/$DEPLOYDIR/* $DEPLOYDIR
# If we're building for multiple archs, create fat binaries
if (( ${#ARCHS[@]} > 1 )); then
LIBS=()
for arch in ${ARCHS[*]}; do
LIBS+=(build-$arch/install/$DEPLOYDIR/lib/libcairo.dylib)
done
lipo -create ${LIBS[@]} -output $DEPLOYDIR/lib/libcairo.dylib
fi
install_name_tool -id @rpath/libcairo.dylib $DEPLOYDIR/lib/libcairo.dylib
install_name_tool -change @rpath/libpixman.dylib @rpath/libpixman-1.dylib $DEPLOYDIR/lib/libcairo.dylib
}
if [ ! -f $OPENSCADDIR/openscad.appdata.xml.in ]; then
echo "Must be run from the OpenSCAD source root directory"
exit 0
fi
OPENSCAD_SCRIPTDIR=$PWD/scripts
TIME_LIMIT=1440 # one day
while getopts 'dfl:axv' c
do
case $c in
d) OPTION_DEPLOY=true;;
f) OPTION_FORCE=1;;
l) TIME_LIMIT=${OPTARG}; if [ "$TIME_LIMIT" -gt 0 ]; then echo time limit $TIME_LIMIT minutes; else printUsage;exit 1; fi;;
a) OPTION_ARM64=true;;
x) OPTION_X86_64=true;;
v) echo verbose on;;
*) printUsage;exit 1;;
esac
done
START_TIME=$(( $(date +%s) / 60 ))
STOP_TIME=$(( $START_TIME + $TIME_LIMIT ))
OPTION_PACKAGES="${@:$OPTIND}"
OSX_MAJOR_VERSION=`sw_vers -productVersion | cut -d. -f1`
OSX_VERSION=`sw_vers -productVersion | cut -d. -f2`
if (( $OSX_MAJOR_VERSION >= 14 )); then
echo "Detected Sonoma (14.x) or later"
elif (( $OSX_MAJOR_VERSION >= 13 )); then
echo "Detected Ventura (13.x) or later"
elif (( $OSX_MAJOR_VERSION >= 11 )); then
echo "Detected BigSur (11.x) or later"
elif (( $OSX_VERSION >= 15 )); then
echo "Detected Catalina (10.15) or later"
elif (( $OSX_VERSION >= 14 )); then
echo "Detected Mojave (10.14) or later"
elif (( $OSX_VERSION >= 13 )); then
echo "Detected High Sierra (10.13) or later"
elif (( $OSX_VERSION >= 12 )); then
echo "Detected Sierra (10.12) or later"
elif (( $OSX_VERSION >= 11 )); then
echo "Detected El Capitan (10.11) or later"
elif (( $OSX_VERSION >= 10 )); then
echo "Detected Yosemite (10.10) or later"
elif (( $OSX_VERSION >= 9 )); then
echo "Detected Mavericks (10.9)"
elif (( $OSX_VERSION >= 8 )); then
echo "Detected Mountain Lion (10.8)"
else
echo "Detected Lion (10.7) or earlier"
fi
LOCAL_ARCH=`uname -m`
# Some older autotools doesn't recognize 'arm64', so we set
# LOCAL_GNU_ARCH and GNU_ARCHS to 'aarch64' for usage with those tools.
if [[ $LOCAL_ARCH == "arm64" ]]; then
LOCAL_GNU_ARCH=aarch64
else
LOCAL_GNU_ARCH=$LOCAL_ARCH
fi
ARCHS=()
GNU_ARCHS=()
if $OPTION_ARM64 || $OPTION_X86_64; then
if $OPTION_X86_64; then
ARCHS+=(x86_64)
GNU_ARCHS+=(x86_64)
fi
if $OPTION_ARM64; then
ARCHS+=(arm64)
GNU_ARCHS+=(aarch64)
fi
else
ARCHS+=($LOCAL_ARCH)
GNU_ARCHS+=($LOCAL_GNU_ARCH)
fi
ARCHS_COMBINED=$(IFS=\; ; echo "${ARCHS[*]}")
echo "Building on $LOCAL_ARCH for $ARCHS_COMBINED"
echo "Building for $MAC_OSX_VERSION_MIN or later"
if [ ! $NUMCPU ]; then
NUMCPU=$(($(sysctl -n hw.ncpu) * 3 / 2))
echo "Setting number of CPUs to $NUMCPU"
fi
if $OPTION_DEPLOY; then
echo "Building deployment version of libraries"
fi
if (( $OPTION_FORCE )); then
echo "Forcing rebuild"
fi
echo "Using basedir:" $BASEDIR
mkdir -p $SRCDIR $DEPLOYDIR $DEPLOYDIR/share/macosx-build-dependencies
# Convert DEPLOYDIR to canonical path as "make install" doesn't always like ..s in folder names
DEPLOYDIR=$(cd "$DEPLOYDIR" ; pwd -P)
echo "Using deploydir:" $DEPLOYDIR