We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ac84da commit dd4e13bCopy full SHA for dd4e13b
tools/build_steps_win_arm64.bat
@@ -77,6 +77,10 @@ if errorlevel 1 (
77
exit /b 2
78
)
79
80
+:: Patch
81
+for /r %%f in (..\patches\*) do git am %%f
82
+if errorlevel 1 exit /b 1
83
+
84
:: Set suffixed-ILP64 flags
85
if "%if_bits%"=="64" (
86
set "interface_flags=-DINTERFACE64=1 -DSYMBOLSUFFIX=64_"
@@ -98,7 +102,7 @@ PATH=C:\Program Files\LLVM\bin;%PATH%
98
102
99
103
:: Run CMake and Ninja build
100
104
101
-set CFLAGS=-Wno-reserved-macro-identifier -Wno-unsafe-buffer-usage
105
+set CFLAGS=-Wno-reserved-macro-identifier -Wno-unsafe-buffer-usage -Wno-unused-macros -Wno-sign-conversion -Wno-reserved-identifier
106
cmake .. -G Ninja ^
107
-DCMAKE_BUILD_TYPE=Release ^
108
-DTARGET=ARMV8 ^
0 commit comments