aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2022-03-02 00:01:41 -0500
committerGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2022-03-02 00:01:41 -0500
commit40288a920108073fb7d66123d80af113c373b471 (patch)
tree39206911c18bac446053b459d034fd425135531f
parent45c94a1d395f560c015c6b1a7a3fc3558f7de395 (diff)
Fixed build issues introduced in the previous commit.
-rw-r--r--.github/workflows/release.yml2
-rw-r--r--src/Dockerfile1
2 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 26e56752..d34e5dae 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -37,7 +37,7 @@ jobs:
else
args="release NIGHTLY=1 DEBUG=1"
fi
- make -C src deps win32-deps osx-deps
+ make -C src deps win-deps osx-deps
make -C src $args
# For nightly builds, strip the date from filenames.
diff --git a/src/Dockerfile b/src/Dockerfile
index 2e92c806..6f73d2ff 100644
--- a/src/Dockerfile
+++ b/src/Dockerfile
@@ -28,6 +28,7 @@ RUN echo "Building osxcross" \
&& unzip *.zip && mv osxcross-* /opt/osxcross && rm *.zip \
&& wget https://github.com/phracker/MacOSX-SDKs/releases/download/10.13/${sdk}.tar.xz \
&& tar xJf ${sdk}.tar.xz \
+ && cp -r /usr/lib/llvm-10/include/c++/v1 ${sdk}/usr/include/c++ \
&& tar czf /opt/osxcross/tarballs/${sdk}.tar.gz ${sdk} \
&& rm -r ${sdk}* \
&& cd /opt/osxcross \