mirror of
https://github.com/bensuperpc/dockcross.git
synced 2025-01-22 14:15:44 +01:00
Removing code that the base image is doing, thanks @thewtex
This commit is contained in:
parent
7dbbf54834
commit
4281676888
@ -16,19 +16,6 @@ ENV CC=/emsdk_portable/emscripten/tag-${EMSCRIPTEN_VERSION}/emcc \
|
|||||||
CXX=/emsdk_portable/emscripten/tag-${EMSCRIPTEN_VERSION}/em++ \
|
CXX=/emsdk_portable/emscripten/tag-${EMSCRIPTEN_VERSION}/em++ \
|
||||||
AR=/emsdk_portable/emscripten/tag-${EMSCRIPTEN_VERSION}/emar
|
AR=/emsdk_portable/emscripten/tag-${EMSCRIPTEN_VERSION}/emar
|
||||||
|
|
||||||
# Emscripten generates system libraries the firsts time it runs
|
|
||||||
ADD test/ /tmp/test/
|
|
||||||
RUN cd /tmp && \
|
|
||||||
/bin/echo -e "#include <iostream>\nint main() { std::cout << \"first run\"; return 0; }" > /tmp/first_run.cxx && \
|
|
||||||
$CXX /tmp/first_run.cxx -o a.out.js && \
|
|
||||||
rm /tmp/first_run.* && \
|
|
||||||
/bin/echo -e "#include <stdio.h>\nint main() { printf(\"first run\"); return 0; }" > /tmp/first_run.c && \
|
|
||||||
$CC /tmp/first_run.c -o a.out.js && \
|
|
||||||
rm /tmp/first_run.* a.out.js && \
|
|
||||||
cd /tmp/test && \
|
|
||||||
python /tmp/test/run.py; python /tmp/test/run.py && \
|
|
||||||
cd && rm -rf /tmp/test
|
|
||||||
|
|
||||||
ENV DEFAULT_DOCKCROSS_IMAGE dockcross/browser-asmjs
|
ENV DEFAULT_DOCKCROSS_IMAGE dockcross/browser-asmjs
|
||||||
|
|
||||||
ENV CMAKE_TOOLCHAIN_FILE /emsdk_portable/emscripten/tag-${EMSCRIPTEN_VERSION}/cmake/Modules/Platform/Emscripten.cmake
|
ENV CMAKE_TOOLCHAIN_FILE /emsdk_portable/emscripten/tag-${EMSCRIPTEN_VERSION}/cmake/Modules/Platform/Emscripten.cmake
|
||||||
|
Loading…
x
Reference in New Issue
Block a user