]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - build/makeg2cso.sh
Modified plots and made jet finder use SDigits
[u/mrichter/AliRoot.git] / build / makeg2cso.sh
... / ...
CommitLineData
1#!/bin/sh
2out=$ALICE_ROOT/lib/tgt_$ALICE_TARGET/libg2c_sh
3cd /tmp
4rm -rf g2c ; mkdir g2c ; cd g2c
5ar -x /sw/lib/libg2c.a
6export MACOSX_DEPLOYMENT_TARGET=10.3
7unset LD_PREBIND
8rm -f ${out}.so ${out}.dylib
9g++ -bundle -flat_namespace -undefined dynamic_lookup -o ${out}.so `ls *.o | grep -v buggy`
10g++ -dynamiclib -flat_namespace -undefined dynamic_lookup -single_module -o ${out}.dylib `ls *.o | grep -v buggy`
11