Skip to content

Commit 4364022

Browse files
authored
Merge pull request #216 from chris-rudmin/emscripten
Update emscripten version
2 parents 24004fe + caba028 commit 4364022

14 files changed

+981
-294010
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
INPUT_DIR=./src
22
OUTPUT_DIR=./dist
33
OUTPUT_DIR_UNMINIFIED=./dist-unminified
4-
EMCC_OPTS=-O3 --llvm-lto 1 -s NO_DYNAMIC_EXECUTION=1 -s NO_FILESYSTEM=1
4+
EMCC_OPTS=-O3 -s NO_DYNAMIC_EXECUTION=1 -s NO_FILESYSTEM=1
55
DEFAULT_EXPORTS:='_malloc','_free'
66

77
LIBOPUS_ENCODER_SRC=$(INPUT_DIR)/encoderWorker.js
@@ -49,7 +49,7 @@ $(LIBOPUS_DIR)/autogen.sh $(LIBSPEEXDSP_DIR)/autogen.sh:
4949

5050
$(LIBOPUS_OBJ): $(LIBOPUS_DIR)/autogen.sh
5151
cd $(LIBOPUS_DIR); ./autogen.sh
52-
cd $(LIBOPUS_DIR); emconfigure ./configure --disable-extra-programs --disable-doc --disable-intrinsics --disable-rtcd
52+
cd $(LIBOPUS_DIR); emconfigure ./configure --disable-extra-programs --disable-doc --disable-intrinsics --disable-rtcd --disable-stack-protector
5353
cd $(LIBOPUS_DIR); emmake make
5454

5555
$(LIBSPEEXDSP_OBJ): $(LIBSPEEXDSP_DIR)/autogen.sh

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ A javascript library to encode the output of Web Audio API nodes in Ogg Opus or
55

66
#### Libraries Used
77

8-
- Libopus: v1.3.1 compiled with emscripten 1.38.48
9-
- speexDSP: 1.2.0 compiled with emscripten 1.38.48
8+
- Libopus: v1.3.1 compiled with emscripten 1.39.14
9+
- speexDSP: 1.2.0 compiled with emscripten 1.39.14
1010

1111
#### Required Files
1212

0 commit comments

Comments
 (0)