Changeset 22509
- Timestamp:
- 03/09/18 10:45:13 (7 years ago)
- Location:
- issm/trunk-jpl/externalpackages/valgrind
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/externalpackages/valgrind/install-linux64.sh
r21658 r22509 3 3 4 4 #Some cleanup 5 rm -rf install valgrind-3.10.0 6 mkdir install 5 rm -rf install 7 6 8 #Download from ISSM server 9 $ISSM_DIR/scripts/DownloadExternalPackage.py 'http://issm.jpl.nasa.gov/files/externalpackages/valgrind-3.10.0.tar.bz2' 'valgrind-3.10.0.tar.bz2' 10 11 #Untar 12 tar -jxvf valgrind-3.10.0.tar.bz2 13 14 #Move valgrind into install directory 15 mv valgrind-3.10.0/* install 16 rm -rf valgrind-3.10.0 7 #Download development version 8 git clone git://sourceware.org/git/valgrind.git install 17 9 18 10 #configure 19 11 cd install 20 ./configure --prefix="$ISSM_DIR/externalpackages/valgrind/install" 12 ./autogen.sh 13 ./configure --prefix="$ISSM_DIR/externalpackages/valgrind/install" --enable-only64bit 21 14 22 15 #Compile valgrind 23 make -j 4 24 make install 25 26 #final thing: if mpi is compiled in, soft link its target to a simpler name 27 cd lib 28 ln -s valgrind/libmpiwrap-* ./libmpidebug.so 16 if [ $# -eq 0 ]; then 17 make 18 else 19 make -j $1 20 fi 21 make install -
issm/trunk-jpl/externalpackages/valgrind/install-macosx64.sh
r19295 r22509 6 6 7 7 #Download development version, the current release never supports the latest OS X releases 8 svn co svn://svn.valgrind.org/valgrind/trunkinstall8 git clone git://sourceware.org/git/valgrind.git install 9 9 10 10 #configure … … 14 14 15 15 #Compile valgrind 16 17 make -j 8 18 make install 16 if [ $# -eq 0 ]; then 17 make 18 else 19 make -j $1 20 fi 21 make install
Note:
See TracChangeset
for help on using the changeset viewer.