File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ This file documents changes done for the stan-math project
1010- Support for Windows ARM64 with RTools:
1111 - build/Makefile.tbb
1212 - L94 Wrapped the use of `--version-script` export in conditional on non-WINARM64
13- - build/windows.gcc.ino
13+ - build/windows.gcc.inc
1414 - L84 Wrapped the use of `-flifetime-dse` flag in conditional on non-WINARM64
15+ - L101 Wrapped the use of `-msse` in conditional on non-WINARM64
1516
Original file line number Diff line number Diff line change @@ -98,7 +98,11 @@ CPLUS_FLAGS += -DUSE_WINTHREAD
9898CPLUS_FLAGS += -D_WIN32_WINNT = $(_WIN32_WINNT )
9999
100100# MinGW specific
101- CPLUS_FLAGS += -DMINGW_HAS_SECURE_API = 1 -D__MSVCRT_VERSION__ = 0 x0700 -msse -mthreads
101+ CPLUS_FLAGS += -DMINGW_HAS_SECURE_API = 1 -D__MSVCRT_VERSION__ = 0 x0700 -mthreads
102+ # Unused under ARM64 and error with LLVM19+
103+ ifeq (, $(WINARM64 ))
104+ CPLUS_FLAGS += -msse
105+ endif
102106
103107CONLY = gcc
104108debugger = gdb
You can’t perform that action at this time.
0 commit comments