Changeset 22509


Ignore:
Timestamp:
03/09/18 10:45:13 (7 years ago)
Author:
Mathieu Morlighem
Message:

CHG: now use latest version of valgrind

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  
    33
    44#Some cleanup
    5 rm -rf install valgrind-3.10.0
    6 mkdir install
     5rm -rf install
    76
    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
     8git clone git://sourceware.org/git/valgrind.git install
    179
    1810#configure
    1911cd install
    20 ./configure  --prefix="$ISSM_DIR/externalpackages/valgrind/install"
     12./autogen.sh
     13./configure  --prefix="$ISSM_DIR/externalpackages/valgrind/install" --enable-only64bit
    2114
    2215#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
     16if [ $# -eq 0 ]; then
     17        make
     18else
     19        make -j $1
     20fi
     21make install
  • issm/trunk-jpl/externalpackages/valgrind/install-macosx64.sh

    r19295 r22509  
    66
    77#Download development version, the current release never supports the latest OS X releases
    8 svn co svn://svn.valgrind.org/valgrind/trunk install
     8git clone git://sourceware.org/git/valgrind.git install
    99
    1010#configure
     
    1414
    1515#Compile valgrind
    16 
    17 make  -j 8
    18 make install
     16if [ $# -eq 0 ]; then
     17        make
     18else
     19        make -j $1
     20fi
     21make install
Note: See TracChangeset for help on using the changeset viewer.