Changeset 3753 in Sophya for trunk/SophyaLib/BuildMgr/configure


Ignore:
Timestamp:
Mar 3, 2010, 9:49:43 PM (16 years ago)
Author:
ansari
Message:

Ajout flag -ldble128 au script configure pour gestion du flag de compilation SO_LDBLE128 pour float 128 bits, Reza 03/03/2010

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/BuildMgr/configure

    r3670 r3753  
    4242unset arch64
    4343unset sasz64
     44unset ssldble128
    4445unset nofpic
    4546unset nothsafe
     
    5556  echo 'configure [-sbase SOPHYABASE] [-scxx SOPHYACXX] [-incln] '
    5657  echo "  [-minc mymake.inc]  [-compopt 'cc/cxxOptions'] "
    57   echo '  [-arch64] [-sasz64] [-nofpic] [-nothsafe] [-boundcheck] [-sodebug]'
     58  echo '  [-arch64] [-sasz64] [-ldble128] [-nofpic] [-nothsafe] [-boundcheck] [-sodebug]'
    5859  echo '  [-extp dir1 -extp dir2 ...] [-extip dir1 -extip dir2 ... ] [-extlp dir1 -extlp dir2 ... ]'
    5960  echo '  [-noextlib] [-noext fits] [-noext fftw] [-noext lapack] [-noext astro]'
     
    146147endif
    147148#  Decodage options pour flags de machdefs.h
    148 #  Liste de flags : SO_ARCH64 SO_NOFPIC SO_SASIZET64 SO_BOUNDCHECKING SOPHYA_DEBUG
     149#  Liste de flags : SO_ARCH64 SO_NOFPIC SO_SASIZET64 SO_LDBLE128 SO_BOUNDCHECKING SOPHYA_DEBUG
    149150if( "$1" == "-arch64" ) then
    150151  set arch64
     
    152153if( "$1" == "-sasz64" ) then
    153154  set sasz64
     155endif
     156if( "$1" == "-ldble128" ) then
     157  set ssldble128
    154158endif
    155159if( "$1" == "-nofpic" ) then
     
    491495if ( $?arch64 )  echo "#define SO_ARCH64  1" >> $mdefname
    492496if ( $?sasz64 )  echo "#define SO_SASIZET64  1" >> $mdefname
     497if ( $?ssldble128 ) echo "#define SO_LDBLE128  1" >> $mdefname
    493498if ( $?nofpic )  echo "#define SO_NOFPIC  1" >> $mdefname
    494499if ( $?nothsafe )  echo "#define SO_NOTHSAFE  1" >> $mdefname
Note: See TracChangeset for help on using the changeset viewer.