summaryrefslogtreecommitdiff
path: root/github_macos_build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'github_macos_build.sh')
-rw-r--r--github_macos_build.sh7
1 files changed, 1 insertions, 6 deletions
diff --git a/github_macos_build.sh b/github_macos_build.sh
index 739088814..5b8305a02 100644
--- a/github_macos_build.sh
+++ b/github_macos_build.sh
@@ -8,12 +8,7 @@ git describe --tags | sed -e "s/\(.*\)/\#define SLANG_TAG_VERSION \"\1\"/" > sla
cat slang-tag-version.h
# Create the makefile
-#
-# NOTE! For now we disable stdlib embedding, because on OSX it produces an error when generating
-# thinking it's creating a lib, but has no source
-#
-# --enable-embed-stdlib=true
-./premake5 gmake --cc=${CC} --enable-xlib=false --arch=${ARCH} --deps=true --no-progress=true
+./premake5 gmake --cc=${CC} --enable-xlib=false --enable-embed-stdlib=true --arch=${ARCH} --deps=true --no-progress=true
# Build the configuration
make config=${CONFIGURATION}_x64 -j`sysctl -n hw.ncpu`