Changeset 15255


Ignore:
Timestamp:
06/13/13 15:26:42 (12 years ago)
Author:
Eric.Larour
Message:

CHG: better cccl

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/externalpackages/cccl/issm/cccl

    r15088 r15255  
    6262
    6363                *.mex*)
    64                         opts="$opts /Fe$1"
     64                        opts="$opts /OUT:$1"
    6565                ;;
    6666
     
    8686        #do nothing
    8787        ;;
     88   -I*)
     89           include=`echo $1 | sed 's/-I//g'`
     90           include=`cygpath -m "$include"`
     91           include="/I\"$include\""
     92           includeopts="$include $includeopts"
     93   ;;
    8894        -L*)
    8995                library=`echo $1 | sed 's/-L//g'`
     96      library=`cygpath -m $library`
    9097                string="/link /LIBPATH:\"$library\""
    9198                opts="$opts $string"
     
    101108done
    102109                       
    103 #Some default options:
    104 opts="$opts /nologo"
    105 
    106 #echo "$prog $opts"
    107 exec $prog $opts
     110echo "$prog "$includeopts" $opts /nologo"
     111$prog "$includeopts" $opts /nologo
    108112exit 0
    109113
Note: See TracChangeset for help on using the changeset viewer.