mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-29 10:08:59 +00:00
20 lines
603 B
Plaintext
20 lines
603 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
WRAPPER_INCLUDEDIR="-I$STAGING_DIR/usr/include/c++/v1"
|
||
|
WRAPPER_LIBDIR="-L$STAGING_DIR/usr/lib"
|
||
|
WRAPPER_LIBS="-lc -lgcc_s -lssp_nonshared"
|
||
|
|
||
|
WRAPPER_OPTIONS=""
|
||
|
WRAPPER_INCLIB="Y"
|
||
|
for arg
|
||
|
do
|
||
|
case "$arg" in
|
||
|
-c|-E|-S) WRAPPER_INCLIB="N" ;;
|
||
|
-static) [ "$WRAPPER_LIBS" != "-lc -lgcc_s -lssp_nonshared -lgcc_eh" ] && WRAPPER_LIBS="-lc -lgcc_s -lssp_nonshared -lgcc_eh" ;;
|
||
|
esac
|
||
|
done
|
||
|
[ "$WRAPPER_INCLIB" = "Y" ] && WRAPPER_OPTIONS="-nodefaultlibs $WRAPPER_LIBDIR -lc++ -lsupc++ $WRAPPER_LIBS"
|
||
|
|
||
|
exec CXX -fno-builtin -nostdinc++ -DGCC_HASCLASSVISIBILITY "$WRAPPER_INCLUDEDIR" "$@" $WRAPPER_OPTIONS
|
||
|
|