Changeset 2470


Ignore:
Timestamp:
03/07/23 10:39:13 (16 months ago)
Author:
jderouillat
Message:

Fixes for new MAC environment

Location:
XIOS2/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • XIOS2/trunk/arch/arch-GCC_MACOSX.fcm

    r591 r2470  
    77%LINKER         mpif90 
    88 
    9 %BASE_CFLAGS    -w 
     9%BASE_CFLAGS    -w -std=gnu++11 
    1010%PROD_CFLAGS    -O3 -D BOOST_DISABLE_ASSERTS 
    1111%DEV_CFLAGS     -g 
    1212%DEBUG_CFLAGS   -g -O2 
    1313 
    14 %BASE_FFLAGS    -D__NONE__ 
     14%BASE_FFLAGS    -D__NONE__ -ffree-line-length-none 
    1515%PROD_FFLAGS    -O3 
    1616%DEV_FFLAGS     -g -O2 
     
    2020%BASE_LD        -lstdc++ 
    2121 
    22 %CPP            /opt/local/bin/cpp-mp-4.5 
    23 %FPP            /opt/local/bin/cpp-mp-4.5 -P 
    24 %MAKE           gmake 
     22%CPP            cpp 
     23%FPP            cpp -P 
     24%MAKE           make 
    2525 
  • XIOS2/trunk/src/attribute_map.cpp

    r1704 r2470  
    381381           { 
    382382             oss << ", " << it->second->getName() << "_"; 
    383              if (oss.tellp() - startPos > 90) 
     383             if ((long)oss.tellp() - startPos > 90) 
    384384             { 
    385385               oss << "  &" << iendl; 
     
    431431           { 
    432432             oss << ", " << it->second->getName() << "_"; 
    433              if (oss.tellp() - startPos > 90) 
     433             if ((long)oss.tellp() - startPos > 90) 
    434434             { 
    435435               oss << "  &" << iendl; 
     
    481481           { 
    482482             oss << ", " << it->second->getName() << "_"; 
    483              if (oss.tellp() - startPos > 90) 
     483             if ((long)oss.tellp() - startPos > 90) 
    484484             { 
    485485               oss << "  &" << iendl; 
     
    531531           { 
    532532             oss << ", " << it->second->getName(); 
    533              if (oss.tellp() - startPos > 90) 
     533             if ((long)oss.tellp() - startPos > 90) 
    534534             { 
    535535               oss << "  &" << iendl; 
     
    566566           { 
    567567             oss << ", " << it->second->getName(); 
    568              if (oss.tellp() - startPos > 90) 
     568             if ((long)oss.tellp() - startPos > 90) 
    569569             { 
    570570               oss << "  &" << iendl; 
     
    593593           { 
    594594             oss << ", " << it->second->getName(); 
    595              if (oss.tellp() - startPos > 90) 
     595             if ((long)oss.tellp() - startPos > 90) 
    596596             { 
    597597               oss << "  &" << iendl; 
     
    628628           { 
    629629             oss << ", " << it->second->getName(); 
    630              if (oss.tellp() - startPos > 90) 
     630             if ((long)oss.tellp() - startPos > 90) 
    631631             { 
    632632               oss << "  &" << iendl; 
     
    655655           { 
    656656             oss << ", " << it->second->getName(); 
    657              if (oss.tellp() - startPos > 90) 
     657             if ((long)oss.tellp() - startPos > 90) 
    658658             { 
    659659               oss << "  &" << iendl; 
     
    690690           { 
    691691             oss << ", " << it->second->getName(); 
    692              if (oss.tellp() - startPos > 90) 
     692             if ((long)oss.tellp() - startPos > 90) 
    693693             { 
    694694               oss << "  &" << iendl; 
     
    717717           { 
    718718             oss << ", " << it->second->getName(); 
    719              if (oss.tellp() - startPos > 90) 
     719             if ((long)oss.tellp() - startPos > 90) 
    720720             { 
    721721               oss << "  &" << iendl; 
     
    755755           { 
    756756             oss << ", " << it->second->getName(); 
    757              if (oss.tellp() - startPos > 90) 
     757             if ((long)oss.tellp() - startPos > 90) 
    758758             { 
    759759               oss << "  &" << iendl; 
     
    782782           { 
    783783             oss << ", " << it->second->getName(); 
    784              if (oss.tellp() - startPos > 90) 
     784             if ((long)oss.tellp() - startPos > 90) 
    785785             { 
    786786               oss << "  &" << iendl; 
     
    820820           { 
    821821             oss << ", " << it->second->getName(); 
    822              if (oss.tellp() - startPos > 90) 
     822             if ((long)oss.tellp() - startPos > 90) 
    823823             { 
    824824               oss << "  &" << iendl; 
     
    847847           { 
    848848             oss << ", " << it->second->getName(); 
    849              if (oss.tellp() - startPos > 90) 
     849             if ((long)oss.tellp() - startPos > 90) 
    850850             { 
    851851               oss << "  &" << iendl; 
     
    885885           { 
    886886             oss << ", " << it->second->getName(); 
    887              if (oss.tellp() - startPos > 90) 
     887             if ((long)oss.tellp() - startPos > 90) 
    888888             { 
    889889               oss << "  &" << iendl; 
Note: See TracChangeset for help on using the changeset viewer.