Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Libretro Infrastructure
libretro-build-mxe-win-cross-cores
Commits
75163d33
Commit
75163d33
authored
Jan 10, 2021
by
jdgleaver
Browse files
Dockerfile.gcc10: Use fixed 'known working' MXE commit, to avoid potential toolchain regressions
parent
d00d2d3f
Pipeline
#10026
passed with stage
in 169 minutes and 34 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Dockerfile.gcc10
View file @
75163d33
...
...
@@ -8,6 +8,7 @@ ENV branch=$branch
ARG NUMPROC
ARG MXE_GCC_VERSION=gcc10
ARG MXE_COMMIT=ad07d47c3e43ec5f8d0b4cc4e5efa4e9a9a15426
ENV PACKAGES \
build-essential \
...
...
@@ -103,8 +104,8 @@ RUN set -eux; \
cd mxe; \
git init; \
git remote add origin 'https://github.com/mxe/mxe.git'; \
git fetch --depth=1 origin
master
; \
git checkout
master
; \
git fetch --depth=1 origin
${MXE_COMMIT}
; \
git checkout
${MXE_COMMIT}
; \
make check-requirements; \
echo '' >> settings.mk; \
echo 'JOBS :=' ${NUMPROC} >> settings.mk; \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment