We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9679417 commit 24d405aCopy full SHA for 24d405a
1 file changed
.github/workflows/build.yml
@@ -23,6 +23,8 @@ jobs:
23
cmake -S quickjs -B build -G "Visual Studio 17 2022" -A x64 -DBUILD_SHARED_LIBS=ON
24
cmake --build build --config Release
25
26
+ - uses: ilammy/msvc-dev-cmd@v1
27
+
28
- name: Build shim
29
run: |
30
cl /LD /O2 /Febuild/Release/qjs_shim.dll shim~/qjs_shim.c /Iquickjs /link /LIBPATH:build/Release qjs.lib
@@ -265,7 +267,8 @@ jobs:
265
267
-DANDROID_ABI=x86 \
266
268
-DANDROID_PLATFORM=android-21 \
269
-DBUILD_SHARED_LIBS=ON \
- -DCMAKE_BUILD_TYPE=Release
270
+ -DCMAKE_BUILD_TYPE=Release \
271
+ -DCMAKE_C_FLAGS="-msse2 -mfpmath=sse"
272
cmake --build build -j$(nproc)
273
274
0 commit comments