Changes between Version 1 and Version 2 of misc
- Timestamp:
- 02/04/09 12:57:50 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
misc
v1 v2 2 2 3 3 === Building and Installing NumPy 1.2.1 on the BG/P (Surveyor) === 4 5 These instructions assume bash. 4 6 5 7 * Copy site.cfg.example to site.cfg then add: … … 16 18 17 19 {{{ 18 ldpath=/ soft/apps/ESSL-4.3/include20 ldpath=/bgsys/drivers/ppcfloor/gnu-linux/lib 19 21 ldflags="-Wl,--allow-multiple-definition -L/opt/ibmcmp/xlmass/bg/4.4/bglib" 20 root=`pwd`/soft/numpy-1.2.1-essl 22 root=$HOME/soft/numpy-1.2.1-essl 23 p=/bgsys/drivers/ppcfloor/gnu-linux/bin/python 24 c='"/bgsys/drivers/ppcfloor/gnu-linux/bin/powerpc-bgp-linux-gcc -DNO_APPEND_FORTRAN -L/opt/ibmcmp/xlmass/bg/4.4/bglib"' 21 25 }}} 26 27 * Now build and install numpy: 28 {{{ 29 MATHLIB="mass" LDFLAGS="$ldflags" LD_LIBRARY_PATH="$ldpath" CC="$c" $p setup.py install --root="$root" 30 }}}