File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ This file documents changes done for the stan-math project
10
10
- Support for Windows ARM64 with RTools:
11
11
- build/Makefile.tbb
12
12
- L94 Wrapped the use of `--version-script` export in conditional on non-WINARM64
13
- - build/windows.gcc.ino
13
+ - build/windows.gcc.inc
14
14
- 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
15
16
Original file line number Diff line number Diff line change @@ -98,7 +98,11 @@ CPLUS_FLAGS += -DUSE_WINTHREAD
98
98
CPLUS_FLAGS += -D_WIN32_WINNT = $(_WIN32_WINNT )
99
99
100
100
# 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
102
106
103
107
CONLY = gcc
104
108
debugger = gdb
You can’t perform that action at this time.
0 commit comments