Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 1 | #! /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 |
Michael J. Spencer | 626916f | 2010-12-10 19:47:54 +0000 | [diff] [blame] | 5 | # the library. Otherwise we'll use clang++. |
Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 6 | |
| 7 | set -e |
| 8 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 9 | if [ `basename $(pwd)` != "lib" ] |
| 10 | then |
Daniel Dunbar | fd329a4 | 2013-02-07 00:24:17 +0000 | [diff] [blame] | 11 | echo "current directory must be lib" |
| 12 | exit 1 |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 13 | fi |
| 14 | |
Howard Hinnant | a6a062d | 2010-06-02 18:20:39 +0000 | [diff] [blame] | 15 | if [ -z "$CXX" ] |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 16 | then |
Daniel Dunbar | fd329a4 | 2013-02-07 00:24:17 +0000 | [diff] [blame] | 17 | CXX=clang++ |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 18 | fi |
| 19 | |
Nick Kledzik | c6e08d6 | 2011-05-04 21:50:46 +0000 | [diff] [blame] | 20 | if [ -z "$CC" ] |
| 21 | then |
| 22 | CC=clang |
| 23 | fi |
| 24 | |
Nick Kledzik | c7e4d82 | 2010-09-10 20:42:36 +0000 | [diff] [blame] | 25 | if [ -z $MACOSX_DEPLOYMENT_TARGET ] |
| 26 | then |
Daniel Dunbar | fd329a4 | 2013-02-07 00:24:17 +0000 | [diff] [blame] | 27 | if [ -z $IPHONEOS_DEPLOYMENT_TARGET ] |
| 28 | then |
| 29 | MACOSX_DEPLOYMENT_TARGET=10.7 |
| 30 | fi |
Nick Kledzik | c7e4d82 | 2010-09-10 20:42:36 +0000 | [diff] [blame] | 31 | fi |
| 32 | |
| 33 | if [ -z $RC_ProjectSourceVersion ] |
| 34 | then |
| 35 | RC_ProjectSourceVersion=1 |
| 36 | fi |
| 37 | |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 38 | EXTRA_FLAGS="-std=c++0x -fstrict-aliasing -Wall -Wextra -Wshadow -Wconversion \ |
| 39 | -Wnewline-eof -Wpadded -Wmissing-prototypes -Wstrict-aliasing=2 \ |
| 40 | -Wstrict-overflow=4" |
Howard Hinnant | d5fed03 | 2011-05-29 13:57:49 +0000 | [diff] [blame] | 41 | |
Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 42 | case $TRIPLE in |
| 43 | *-apple-*) |
Nick Kledzik | d982028 | 2011-05-06 01:13:20 +0000 | [diff] [blame] | 44 | if [ -z $RC_XBS ] |
Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 45 | then |
Howard Hinnant | 0e353f2 | 2010-08-11 18:11:36 +0000 | [diff] [blame] | 46 | RC_CFLAGS="-arch i386 -arch x86_64" |
Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 47 | fi |
| 48 | SOEXT=dylib |
Daniel Dunbar | fd329a4 | 2013-02-07 00:24:17 +0000 | [diff] [blame] | 49 | if [ "$MACOSX_DEPLOYMENT_TARGET" == "10.6" ] |
| 50 | then |
| 51 | EXTRA_FLAGS="-std=c++0x -U__STRICT_ANSI__" |
| 52 | LDSHARED_FLAGS="-o libc++.1.dylib \ |
| 53 | -dynamiclib -nodefaultlibs -current_version 1 \ |
| 54 | -compatibility_version 1 \ |
| 55 | -install_name /usr/lib/libc++.1.dylib \ |
| 56 | -Wl,-reexport_library,/usr/lib/libc++abi.dylib \ |
| 57 | -Wl,-unexported_symbols_list,libc++unexp.exp \ |
| 58 | /usr/lib/libSystem.B.dylib" |
| 59 | else |
Daniel Dunbar | fd329a4 | 2013-02-07 00:24:17 +0000 | [diff] [blame] | 60 | if [ -n "$SDKROOT" ] |
| 61 | then |
| 62 | EXTRA_FLAGS+="-isysroot ${SDKROOT}" |
| 63 | if echo "${RC_ARCHS}" | grep -q "armv7" |
| 64 | then |
| 65 | RE_EXPORT_LINE="${SDKROOT}/usr/lib/libc++abi.dylib -Wl,-reexported_symbols_list,libc++sjlj-abi.exp" |
| 66 | else |
| 67 | RE_EXPORT_LINE="-Wl,-reexport_library,${SDKROOT}/usr/lib/libc++abi.dylib" |
| 68 | fi |
| 69 | CXX=`xcrun -sdk "${SDKROOT}" -find clang++` |
| 70 | CC=`xcrun -sdk "${SDKROOT}" -find clang` |
Daniel Dunbar | 6afc7ad | 2013-02-07 00:24:19 +0000 | [diff] [blame^] | 71 | else |
| 72 | # Check if we have _LIBCPPABI_VERSION, to determine the reexport list to use. |
| 73 | if (echo "#include <cxxabi.h>" | $CXX -E -dM -x c++ - | \ |
| 74 | grep _LIBCPPABI_VERSION > /dev/null) |
| 75 | then |
| 76 | RE_EXPORT_LINE="/usr/lib/libc++abi.dylib -Wl,-reexported_symbols_list,libc++abi2.exp" |
| 77 | else |
| 78 | RE_EXPORT_LINE="/usr/lib/libc++abi.dylib -Wl,-reexported_symbols_list,libc++abi.exp" |
| 79 | fi |
Daniel Dunbar | fd329a4 | 2013-02-07 00:24:17 +0000 | [diff] [blame] | 80 | fi |
| 81 | LDSHARED_FLAGS="-o libc++.1.dylib \ |
| 82 | -dynamiclib -nodefaultlibs \ |
| 83 | -current_version ${RC_ProjectSourceVersion} \ |
| 84 | -compatibility_version 1 \ |
| 85 | -install_name /usr/lib/libc++.1.dylib \ |
| 86 | -lSystem \ |
| 87 | -Wl,-unexported_symbols_list,libc++unexp.exp \ |
| 88 | ${RE_EXPORT_LINE} \ |
| 89 | -Wl,-force_symbols_not_weak_list,notweak.exp \ |
| 90 | -Wl,-force_symbols_weak_list,weak.exp" |
| 91 | fi |
Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 92 | ;; |
Howard Hinnant | efbe406 | 2011-09-28 21:39:20 +0000 | [diff] [blame] | 93 | *-*-mingw*) |
| 94 | # FIXME: removing libgcc and libsupc++ dependencies means porting libcxxrt and LLVM/compiler-rt |
| 95 | SOEXT=dll |
| 96 | LDSHARED_FLAGS="-o libc++.dll \ |
| 97 | -shared -nodefaultlibs -Wl,--export-all-symbols -Wl,--allow-multiple-definition -Wl,--out-implib,libc++.dll.a \ |
| 98 | -lsupc++ -lpthread -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcr100 -ladvapi32 -lshell32 -luser32 -lkernel32 -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt" |
Daniel Dunbar | fd329a4 | 2013-02-07 00:24:17 +0000 | [diff] [blame] | 99 | ;; |
Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 100 | *) |
| 101 | RC_CFLAGS="-fPIC" |
| 102 | SOEXT=so |
| 103 | LDSHARED_FLAGS="-o libc++.so.1.0 \ |
| 104 | -shared -nodefaultlibs -Wl,-soname,libc++.so.1 \ |
Howard Hinnant | d5fed03 | 2011-05-29 13:57:49 +0000 | [diff] [blame] | 105 | -lpthread -lrt -lc -lstdc++" |
Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 106 | ;; |
| 107 | esac |
| 108 | |
Nick Kledzik | d982028 | 2011-05-06 01:13:20 +0000 | [diff] [blame] | 109 | if [ -z $RC_XBS ] |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 110 | then |
Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 111 | rm -f libc++.1.$SOEXT* |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 112 | fi |
| 113 | |
| 114 | set -x |
| 115 | |
Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 116 | for FILE in ../src/*.cpp; do |
Daniel Dunbar | fd329a4 | 2013-02-07 00:24:17 +0000 | [diff] [blame] | 117 | $CXX -c -g -Os $RC_CFLAGS $EXTRA_FLAGS -nostdinc++ -I../include $FILE |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 118 | done |
Howard Hinnant | efbe406 | 2011-09-28 21:39:20 +0000 | [diff] [blame] | 119 | case $TRIPLE in |
| 120 | *-*-mingw*) |
| 121 | for FILE in ../src/support/win32/*.cpp; do |
| 122 | $CXX -c -g -Os $RC_CFLAGS $EXTRA_FLAGS -nostdinc++ -I../include $FILE |
| 123 | done |
| 124 | ;; |
| 125 | esac |
Nick Kledzik | c6e08d6 | 2011-05-04 21:50:46 +0000 | [diff] [blame] | 126 | $CC *.o $RC_CFLAGS $LDSHARED_FLAGS $EXTRA_FLAGS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 127 | |
| 128 | #libtool -static -o libc++.a *.o |
| 129 | |
Daniel Dunbar | a38e2c9 | 2013-02-06 00:04:54 +0000 | [diff] [blame] | 130 | # Create the link for the final library name, so that we can use this directory |
| 131 | # as a link target for the tests. |
| 132 | case $TRIPLE in |
| 133 | *-apple-*) |
| 134 | rm -f libc++.dylib |
| 135 | ln -s libc++.1.dylib libc++.dylib |
| 136 | ;; |
| 137 | *-*-mingw*) |
| 138 | ;; |
| 139 | *) |
| 140 | rm -f libc++.so |
| 141 | ln -s libc++.so.1 libc++.so |
| 142 | ;; |
| 143 | esac |
| 144 | |
Nick Kledzik | d982028 | 2011-05-06 01:13:20 +0000 | [diff] [blame] | 145 | if [ -z $RC_XBS ] |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 146 | then |
| 147 | rm *.o |
| 148 | fi |