Skip to content

Commit 8df6932

Browse files
committed
3.1.61.3bi
1 parent db89197 commit 8df6932

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
rustsdk: false
2727
nimsdk: false
2828
COPTS: -O2 -g3
29-
EMFLAVOUR: 4.0.4
29+
EMFLAVOUR: 3.1.61
3030

3131
steps:
3232
- uses: actions/checkout@v4.2.2

emsdk-cc

+3
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,9 @@ else:
225225
if arg.lower() in ("-fpic", "-latomic"):
226226
continue
227227

228+
if arg.lower() in ("-msse", "-msse2", "-msse3", "-mssse3", "-msse4.1", "-msse4.2", "-msse4", "-mavx", "-mfpu=neon"):
229+
continue
230+
228231
if arg in ("-Wl,--as-needed", "-Wl,--eh-frame-hdr", "-Wl,-znoexecstack", "-Wl,-znow", "-Wl,-zrelro", "-Wl,-zrelro,-znow"):
229232
continue
230233

sources.wasm/bullet3.sh

+8-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ then
1212
then
1313
echo -n
1414
else
15-
git clone --recursive --no-tags --depth 1 --single-branch --branch master https://github.com/bulletphysics/bullet3
15+
git clone --recursive --single-branch --branch master https://github.com/bulletphysics/bullet3
16+
pushd bullet3
17+
18+
# tags/3.25
19+
git checkout 2c204c49e56ed15ec5fcfa71d199ab6d6570b3f5
20+
popd
1621
fi
1722

1823
mkdir -p $ROOT/build/bullet3
@@ -24,8 +29,8 @@ then
2429
-DBUILD_CLSOCKET=NO -DUSE_GRAPHICAL_BENCHMARK=NO \
2530
-DBUILD_OPENGL3_DEMOS=NO -DBUILD_BULLET2_DEMOS=NO -DBUILD_UNIT_TESTS=NO
2631
emmake make install
27-
popd
32+
popd # build/bullet3
2833

29-
popd
34+
popd # src
3035
fi
3136

0 commit comments

Comments
 (0)