Changeset 23421


Ignore:
Timestamp:
10/13/18 22:27:13 (7 years ago)
Author:
jdquinn
Message:

BUG: Latent “python2.7” after grep and sed of download script path.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/externalpackages/boost/install-1.55-macosx-el_capitan.sh

    r23417 r23421  
    22set -eu
    33
    4 #Note of caution:  stop after boostrap phase, and run 
    5 #bjam --debug-configuration, to figure out which paths boost is using to include 
    6 #python. make sure everyone of these paths is covered by python. If not, just make 
    7 #symlinks in externalpackages/python to what boost is expecting. Ther is NO WAY 
    8 #to get the boost library to include python support without doing that. 
     4#Note of caution:  stop after boostrap phase, and run
     5#bjam --debug-configuration, to figure out which paths boost is using to include
     6#python. make sure everyone of these paths is covered by python. If not, just make
     7#symlinks in externalpackages/python to what boost is expecting. Ther is NO WAY
     8#to get the boost library to include python support without doing that.
    99
    1010#Some cleanup
     
    1313
    1414#Download from ISSM server
    15 python2.7 $ISSM_DIR/scripts/download_external_package.bash 'https://issm.ess.uci.edu/files/externalpackages/boost_1_55_0.tar.gz' 'boost_1_55_0.tar.gz'
     15$ISSM_DIR/scripts/download_external_package.bash 'https://issm.ess.uci.edu/files/externalpackages/boost_1_55_0.tar.gz' 'boost_1_55_0.tar.gz'
    1616
    17 #Untar 
     17#Untar
    1818tar -zxvf  boost_1_55_0.tar.gz
    1919
     
    2929
    3030#Configure and compile
    31 cd src 
     31cd src
    3232./bootstrap.sh \
    3333        --prefix="$ISSM_DIR/externalpackages/boost/install" \
    34         --with-python=python 
     34        --with-python=python
    3535
    3636#Compile boost
    3737# Need gcc with iconv installed in a location that has been added to your path
    38 # export CC=/usr/local/gfortan/bin/gcc 
     38# export CC=/usr/local/gfortan/bin/gcc
    3939# export CXX=/usr/local/gfortran/bin/g++
    4040./bjam toolset=darwin link=static install
    4141
    42 #put bjam into install also: 
     42#put bjam into install also:
    4343mkdir ../install/bin
    4444cp bjam ../install/bin
Note: See TracChangeset for help on using the changeset viewer.