Changeset 3124


Ignore:
Timestamp:
02/24/10 15:05:36 (15 years ago)
Author:
Eric.Larour
Message:

Added pleiades configuration script + issm_options.m4
update for pleiades and an entry for synching pleiades with astrid.

Location:
issm/trunk
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/m4/issm_options.m4

    r2641 r3124  
    638638                        export CXX=icpc
    639639                        export CXXFLAGS=" -D_INTEL_LINUX_"
     640                elif test $VENDOR = intel-pleiades; then
     641                        export CC=icc
     642                        export CXX=icpc
     643                        export CXXFLAGS=" -O3 -D_INTEL_LINUX_ -xSSE4.2"
    640644                else
    641645                AC_MSG_ERROR([unknow compiler vendor!])
  • issm/trunk/scripts/sync.sh

    r1108 r3124  
    66echo "Watch out, this script should be run in top level directory of cielo"
    77
    8 echo -n "Platform (cosmos,mustang,gemini)?: "
     8echo -n "Platform (cosmos,mustang,gemini,pleiades)?: "
    99read platform
    1010
     
    7373        rm -rf Synchronisation
    7474
     75elif [[ "$platform" ==  "pleiades" ]]
     76then
     77        echo "Synchronizing issm with pleiades"
     78
     79        rm -rf Synchronisation
     80        mkdir Synchronisation
     81        cd Synchronisation
     82        svn co svn+ssh://mustang.jpl.nasa.gov/proj/ice/issm/issm/trunk
     83
     84        #then tar the archive
     85        tar zcvf trunk.tar.gz trunk/
     86
     87        #send archive to cosmos
     88        scp  trunk.tar.gz elarour@pfe:/home1/elarour
     89
     90        #run synchronization script on cosmos
     91        ssh elarour@pfe './sync_pleiades.sh'
     92
     93        #exit
     94        cd ..
     95        rm -rf Synchronisation
     96
    7597else
    7698        echo "This platform not supported yet"
Note: See TracChangeset for help on using the changeset viewer.