Changeset 2772 in Sophya for trunk/SophyaLib/BuildMgr


Ignore:
Timestamp:
May 26, 2005, 10:45:48 AM (20 years ago)
Author:
ansari
Message:

1/ Ajout fichier flags compil pour SGI-CC (IRIX64_CC_make.inc
2/ Modification de configure pour flags specifique SGI et ajout flag -follow aux commandes find pour le suivi des liens symboliques

Reza , 26/5/2005

Location:
trunk/SophyaLib/BuildMgr
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/BuildMgr/configure

    r2751 r2772  
    210210    echo "Searching include file for $SOPEXT[$i] ..."
    211211    foreach d ( $extpathinc $extpath $defextinc )
    212       set duminc = `find $d -name $nom -print | head -1 `
     212      set duminc = `find $d -name $nom -print -follow | head -1 `
    213213      set dumrep = $duminc:h
    214214      if ( "$dumrep" != "" ) then
     
    244244    echo "Searching libraries path for $SOPEXT[$i] ..."
    245245    foreach d ( $extpathlib $extpath $defextlib )
    246       set dumlib = `find $d -name $nom -print | head -1 `
     246      set dumlib = `find $d -name $nom -print -follow | head -1 `
    247247      if ( "$dumlib" != "" ) then
    248248        echo "-L$dumlib:h" >> $fpath
     
    313313echo "#endif" >> $mdefname
    314314echo "/* #define SO_BOUNDCHECKING 1 */" >> $mdefname
     315if ( "$sname" == "IRIX64" ) then
     316#  SGI_ARCH64 : compile avec -64 (en 64 bits)
     317  echo "#define SGI_ARCH64 1 /* Compile avec -64 */" >> $mdefname
     318  if ( "$SOPHYACXX" == "CC" ) then
     319#  __SGICC__ : flag indiquant que c'est le compilo CC de SGI
     320    echo "#define __SGICC__ 1" >> $mdefname
     321  endif
     322endif
    315323
    316324echo " " >> $mdefname
Note: See TracChangeset for help on using the changeset viewer.