blob: a3c2488f645ba5ec8d18dc814ce6242c14260c58 [file] [log] [blame]
Howard Hinnantf81cdff2012-01-24 23:42:30 +00001#! /bin/sh
2#
3# Set the $TRIPLE environment variable to your system's triple before
4# running this script. If you set $CXX, that will be used to compile
5# the library. Otherwise we'll use clang++.
6
7set -e
8
9if [ `basename $(pwd)` != "lib" ]
10then
11 echo "current directory must be lib"
12 exit 1
13fi
14
15if [ -z "$CXX" ]
16then
17 CXX=clang++
18fi
19
20if [ -z "$CC" ]
21then
22 CC=clang
23fi
24
25if [ -z $RC_ProjectSourceVersion ]
26then
27 RC_ProjectSourceVersion=1
28fi
29
Howard Hinnant3e5c7d02012-03-08 18:45:24 +000030EXTRA_FLAGS="-std=c++0x -stdlib=libc++ -fstrict-aliasing -Wstrict-aliasing=2 \
Howard Hinnantdfa81ca2012-03-08 20:23:24 +000031 -Wsign-conversion -Wshadow -Wconversion -Wunused-variable \
Howard Hinnant30a486d2012-03-08 20:50:28 +000032 -Wmissing-field-initializers -Wchar-subscripts -Wmismatched-tags \
Howard Hinnantffdd8c42012-03-08 20:51:01 +000033 -Wmissing-braces -Wshorten-64-to-32 -Wsign-compare \
Howard Hinnant96f01712012-03-09 18:01:37 +000034 -Wstrict-aliasing=2 -Wstrict-overflow=4 -Wunused-parameter \
35 -Wnewline-eof"
Howard Hinnantf81cdff2012-01-24 23:42:30 +000036
37case $TRIPLE in
38 *-apple-*)
39 if [ -z $RC_XBS ]
40 then
41 RC_CFLAGS="-arch i386 -arch x86_64"
42 fi
43 SOEXT=dylib
44 if [ -n "$SDKROOT" ]
45 then
46 EXTRA_FLAGS+="-isysroot ${SDKROOT}"
47 CXX=`xcrun -sdk "${SDKROOT}" -find clang++`
48 CC=`xcrun -sdk "${SDKROOT}" -find clang`
49 fi
50 LDSHARED_FLAGS="-o libc++abi.dylib \
51 -dynamiclib -nodefaultlibs \
52 -current_version ${RC_ProjectSourceVersion} \
53 -compatibility_version 1 \
54 -install_name /usr/lib/libc++abi.dylib \
55 -lSystem"
56 ;;
57 *-*-mingw*)
58 # FIXME: removing libgcc and libsupc++ dependencies means porting libcxxrt and LLVM/compiler-rt
59 SOEXT=dll
60 LDSHARED_FLAGS="-o libc++abi.dll \
61 -shared -nodefaultlibs -Wl,--export-all-symbols -Wl,--allow-multiple-definition -Wl,--out-implib,libc++abi.dll.a \
62 -lsupc++ -lpthread -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcr100 -ladvapi32 -lshell32 -luser32 -lkernel32 -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt"
63 ;;
64 *)
65 RC_CFLAGS="-fPIC"
66 SOEXT=so
67 LDSHARED_FLAGS="-o libc++abi.so.1.0 \
68 -shared -nodefaultlibs -Wl,-soname,libc++abi.so.1 \
69 -lpthread -lrt -lc -lstdc++"
70 ;;
71esac
72
73if [ -z $RC_XBS ]
74then
75 rm -f libc++abi.1.$SOEXT*
76fi
77
78set -x
79
80for FILE in ../src/*.cpp; do
Howard Hinnant6a169792012-02-03 18:36:36 +000081 $CXX -c -g -O3 $RC_CFLAGS $EXTRA_FLAGS -I../include $FILE
Howard Hinnantf81cdff2012-01-24 23:42:30 +000082done
83case $TRIPLE in
84 *-*-mingw*)
85 for FILE in ../src/support/win32/*.cpp; do
86 $CXX -c -g -Os $RC_CFLAGS $EXTRA_FLAGS -I../include $FILE
87 done
88 ;;
89esac
90$CC *.o $RC_CFLAGS $LDSHARED_FLAGS $EXTRA_FLAGS
91
92if [ -z $RC_XBS ]
93then
94 rm *.o
95fi