Skip to content

Commit

Permalink
rerun autotools to get -Zc:__cplusplus for MS/Intel on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
svigerske committed Jun 25, 2021
1 parent 9ea1788 commit 91f4b3b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@ More detailed information about incremental changes can be found in the

## 3.14

### 3.14.1 (2021-xx-yy)
### 3.14.1 (2021-06-25)

- Fixed invalidation of cached Hessians when reoptimizing with same structure.
- Added `OptionsList::SetBoolValue()` and `OptionsList::SetBoolValueIfUnset()`. [#492]
- Skip check for and link against libdl if linear solver loader is disabled.
- Fixed missing initialization of `BacktrackingLineSearch::in_watchdog_`.
- Fixed a problem with the current solution not being reset when
initialization of a NLP fails in reoptimization.
- Fixed that C++11 capability was not correctly identified with MS/Intel compilers.

### 3.14.0 (2021-06-15)

Expand Down
4 changes: 2 additions & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -3752,7 +3752,7 @@ fi
: ${FFLAGS:="-nologo -fpp -Z7 -MDd $ADD_FFLAGS"}
: ${FCFLAGS:="-nologo -fpp -Z7 -MDd $ADD_FCFLAGS"}
: ${CFLAGS:="-nologo -Z7 -MDd $ADD_CFLAGS"}
: ${CXXFLAGS:="-nologo -EHs -Z7 -MDd $ADD_CXXFLAGS"}
: ${CXXFLAGS:="-nologo -EHs -Z7 -MDd -Zc:__cplusplus $ADD_CXXFLAGS"}
else
: ${FFLAGS:="-g $ADD_FFLAGS"}
: ${FCFLAGS:="-g $ADD_FCFLAGS"}
Expand All @@ -3764,7 +3764,7 @@ fi
: ${FFLAGS:="-nologo -fpp -O2 -MD $ADD_FFLAGS"}
: ${FCFLAGS:="-nologo -fpp -O2 -MD $ADD_FCFLAGS"}
: ${CFLAGS:="-nologo -DNDEBUG -O2 -MD $ADD_CFLAGS"}
: ${CXXFLAGS:="-nologo -EHs -DNDEBUG -O2 -MD $ADD_CXXFLAGS"}
: ${CXXFLAGS:="-nologo -EHs -DNDEBUG -O2 -MD -Zc:__cplusplus $ADD_CXXFLAGS"}
else
: ${FFLAGS:="-O2 $ADD_FFLAGS"}
: ${FCFLAGS:="-O2 $ADD_FCFLAGS"}
Expand Down

0 comments on commit 91f4b3b

Please sign in to comment.