aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2022-02-24 20:43:13 -0800
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2022-02-24 20:43:13 -0800
commitf6ea59dbd9e1eb4a17369a5337c8dd3dc8b0b8c2 (patch)
tree57941fe57e2e83a2a9839bf87fe71ee923836427
parent986895f8c1c7f40b3eaaa7d7bfd0e27c425aebec (diff)
downloadbun-f6ea59dbd9e1eb4a17369a5337c8dd3dc8b0b8c2.tar.gz
bun-f6ea59dbd9e1eb4a17369a5337c8dd3dc8b0b8c2.tar.zst
bun-f6ea59dbd9e1eb4a17369a5337c8dd3dc8b0b8c2.zip
misc
-rw-r--r--Makefile4
-rw-r--r--integration/apps/bun-dev-index-html.sh4
2 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 939bbfd99..7a838c148 100644
--- a/Makefile
+++ b/Makefile
@@ -728,10 +728,10 @@ jsc-build-mac-compile:
mkdir -p $(WEBKIT_RELEASE_DIR) $(WEBKIT_DIR);
cd $(WEBKIT_RELEASE_DIR) && \
ICU_INCLUDE_DIRS="$(HOMEBREW_PREFIX)opt/icu4c/include" \
- CMAKE_BUILD_TYPE=RelWithDebugInfo cmake \
+ CMAKE_BUILD_TYPE=Release cmake \
-DPORT="JSCOnly" \
-DENABLE_STATIC_JSC=ON \
- -DCMAKE_BUILD_TYPE=RelWithDebugInfo \
+ -DCMAKE_BUILD_TYPE=Release \
-DUSE_THIN_ARCHIVES=OFF \
-DENABLE_FTL_JIT=ON \
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON \
diff --git a/integration/apps/bun-dev-index-html.sh b/integration/apps/bun-dev-index-html.sh
index 3277b0bcd..eef41f78b 100644
--- a/integration/apps/bun-dev-index-html.sh
+++ b/integration/apps/bun-dev-index-html.sh
@@ -56,12 +56,12 @@ if [[ "$(curl --fail -sS http://localhost:8087/foo/foo)" != "$index_content" ]];
fi
if [[ "$(curl --fail -sS http://localhost:8087/bacon)" != "$bacon_content" ]]; then
- echo "ERR: Expected '$index_content', got '$(curl --fail -sS http://localhost:8087/bacon)'"
+ echo "ERR: Expected '$bacon_content', got '$(curl --fail -sS http://localhost:8087/bacon)'"
exit 1
fi
if [[ "$(curl --fail -sS http://localhost:8087/bacon.html)" != "$bacon_content" ]]; then
- echo "ERR: Expected '$index_content', got '$(curl --fail -sS http://localhost:8087/bacon.html)'"
+ echo "ERR: Expected '$bacon_content', got '$(curl --fail -sS http://localhost:8087/bacon.html)'"
exit 1
fi