source: issm/trunk/externalpackages/valgrind/install-linux.sh@ 25836

Last change on this file since 25836 was 25836, checked in by Mathieu Morlighem, 4 years ago

merged trunk-jpl and trunk for revision 25834

  • Property svn:executable set to *
File size: 370 bytes
RevLine 
[25706]1#!/bin/bash
2set -eu
3
4
5# Clean up
6rm -rf install
7
8# Download development version
9git clone git://sourceware.org/git/valgrind.git install
10
11# Configure
12cd install
13./autogen.sh
14./configure \
15 --prefix="$ISSM_DIR/externalpackages/valgrind/install" \
16 --enable-only64bit
17
18# Compile and install
19if [ $# -eq 0 ]; then
20 make
21 make install
22else
23 make -j $1
24 make install -j $1
25fi
Note: See TracBrowser for help on using the repository browser.