-
-
Notifications
You must be signed in to change notification settings - Fork 335
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FIX: build for emcc 2.0.9 #149
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -194,10 +194,9 @@ build/ffmpeg-webm/ffmpeg.bc: $(WEBM_SHARED_DEPS) | |
--enable-libopus \ | ||
--enable-libvpx \ | ||
--extra-cflags="-s USE_ZLIB=1 -I../libvpx/dist/include" \ | ||
--extra-ldflags="-L../libvpx/dist/lib" \ | ||
--extra-ldflags="-r -L../libvpx/dist/lib" \ | ||
&& \ | ||
emmake make -j && \ | ||
cp ffmpeg ffmpeg.bc | ||
emmake make -j EXESUF=.bc | ||
|
||
build/ffmpeg-mp4/ffmpeg.bc: $(MP4_SHARED_DEPS) | ||
cd build/ffmpeg-mp4 && \ | ||
|
@@ -209,10 +208,9 @@ build/ffmpeg-mp4/ffmpeg.bc: $(MP4_SHARED_DEPS) | |
--enable-libmp3lame \ | ||
--enable-libx264 \ | ||
--extra-cflags="-s USE_ZLIB=1 -I../lame/dist/include" \ | ||
--extra-ldflags="-L../lame/dist/lib" \ | ||
--extra-ldflags="-r -L../lame/dist/lib" \ | ||
&& \ | ||
emmake make -j && \ | ||
cp ffmpeg ffmpeg.bc | ||
emmake make -j EXESUF=.bc | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. When There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What should this line be changed to then? |
||
|
||
EMCC_COMMON_ARGS = \ | ||
-O3 \ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I recommend using
.o
since this is not necessarily a bitcode file