Changeset 25642


Ignore:
Timestamp:
10/06/20 15:51:04 (4 years ago)
Author:
jdquinn
Message:

BUG: Do not call PetscOptionsSetFromOptions(NULL) if Windows (for now)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/Params/Parameters.cpp

    r25634 r25642  
    686686
    687687        #ifdef _HAVE_PETSC_
    688                 /*In case we are using PETSC, we do not rely on issmoptions. Instead, we dump issmoptions into the Petsc
    689                  * options database: */
     688                /* In case we are using PETSC, we do not rely on issmoptions. Instead,
     689                   we dump issmoptions into the Petsc options database.
     690
     691                   TODO: Remove the check on !WINDOWS when GNU-like Windows build has
     692                   been implemented
     693                 */
     694
     695                #if (!WINDOWS)
    690696                #if (_PETSC_MINOR_<14)
    691697                PetscOptionsSetFromOptions(NULL);
     698                #endif
    692699                #endif
    693700                #if (_PETSC_MINOR_>=7)
Note: See TracChangeset for help on using the changeset viewer.