-
Notifications
You must be signed in to change notification settings - Fork 752
/
Copy pathcppbuild.sh
executable file
·56 lines (50 loc) · 1.5 KB
/
cppbuild.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
#!/bin/bash
# This file is meant to be included by the parent cppbuild.sh script
if [[ -z "$PLATFORM" ]]; then
pushd ..
bash cppbuild.sh "$@" libraw
popd
exit
fi
# Compilation instructions at https://www.libraw.org/docs/Install-LibRaw.html
LIBRAW_VERSION=0.21.2
download https://github.com/LibRaw/LibRaw/archive/refs/tags/$LIBRAW_VERSION.zip LibRaw-$LIBRAW_VERSION.zip
unzip -o LibRaw-$LIBRAW_VERSION.zip
mkdir -p $PLATFORM
cd $PLATFORM
INSTALL_PATH=`pwd`
mkdir -p include/libraw lib
unzip -o ../LibRaw-$LIBRAW_VERSION.zip
cd LibRaw-$LIBRAW_VERSION
# TODO add: zlib, libjasper, libjpeg8
case $PLATFORM in
linux-x86_64)
autoreconf --install
./configure --prefix=$INSTALL_PATH --disable-examples --disable-static --with-pic
make -j $MAKEJ
make install
;;
macosx-arm64)
export CC="clang -arch arm64"
export CXX="clang++ -arch arm64"
autoreconf --install
./configure --prefix=$INSTALL_PATH --disable-examples --enable-static --with-pic --host="aarch64-apple-darwin"
make -j $MAKEJ
make install
;;
macosx-x86_64)
autoreconf --install
./configure --prefix=$INSTALL_PATH --disable-examples --enable-static --with-pic
make -j $MAKEJ
make install
;;
windows-x86_64)
nmake -f Makefile.msvc
cp libraw/*.h ../include/libraw
cp lib/*.lib ../lib
;;
*)
echo "Error: Platform \"$PLATFORM\" is not supported"
;;
esac
cd ../..