diff options
author | 2021-10-03 20:40:04 -0700 | |
---|---|---|
committer | 2021-10-03 20:40:04 -0700 | |
commit | 7ac4abf8a0cc8d2624977cb4352da19f0acc40a6 (patch) | |
tree | e75e3f255c13e610a2997239864fbadf121c878e | |
parent | 139622e0b8b3a52e2a9fc990fed21b01fe1b7bd7 (diff) | |
download | bun-7ac4abf8a0cc8d2624977cb4352da19f0acc40a6.tar.gz bun-7ac4abf8a0cc8d2624977cb4352da19f0acc40a6.tar.zst bun-7ac4abf8a0cc8d2624977cb4352da19f0acc40a6.zip |
Create separate profile binary and strip debug symbolsbun-v0.0.28
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | packages/bun-cli-darwin-aarch64/.npmignore | 4 | ||||
-rw-r--r-- | packages/bun-cli-darwin-x64/.npmignore | 4 | ||||
-rw-r--r-- | packages/bun-cli-linux-x64/.npmignore | 4 | ||||
-rw-r--r-- | packages/bun-cli-linux-x64/package.json | 8 |
5 files changed, 21 insertions, 1 deletions
@@ -24,7 +24,7 @@ CXX := clang++ -STRIP ?= $(shell which llvm-strip || which llvm-strip-12 || echo "Missing llvm-strip. Please pass it in the STRIP environment var"; exit 1) +STRIP ?= $(shell which llvm-strip || which llvm-strip-12 || echo "Missing llvm-strip. Please pass it in the STRIP environment var"; exit 1;) diff --git a/packages/bun-cli-darwin-aarch64/.npmignore b/packages/bun-cli-darwin-aarch64/.npmignore new file mode 100644 index 000000000..08d23cb2a --- /dev/null +++ b/packages/bun-cli-darwin-aarch64/.npmignore @@ -0,0 +1,4 @@ +bin/bun-profile +bin/*.o +*.o +*.a
\ No newline at end of file diff --git a/packages/bun-cli-darwin-x64/.npmignore b/packages/bun-cli-darwin-x64/.npmignore new file mode 100644 index 000000000..08d23cb2a --- /dev/null +++ b/packages/bun-cli-darwin-x64/.npmignore @@ -0,0 +1,4 @@ +bin/bun-profile +bin/*.o +*.o +*.a
\ No newline at end of file diff --git a/packages/bun-cli-linux-x64/.npmignore b/packages/bun-cli-linux-x64/.npmignore new file mode 100644 index 000000000..08d23cb2a --- /dev/null +++ b/packages/bun-cli-linux-x64/.npmignore @@ -0,0 +1,4 @@ +bin/bun-profile +bin/*.o +*.o +*.a
\ No newline at end of file diff --git a/packages/bun-cli-linux-x64/package.json b/packages/bun-cli-linux-x64/package.json new file mode 100644 index 000000000..7005545aa --- /dev/null +++ b/packages/bun-cli-linux-x64/package.json @@ -0,0 +1,8 @@ +{ + "directories": { + "bin": "bin" + }, + "name": "bun-cli-linux-x64", + "repository": "https://github.com/jarred-sumner/bun", + "version": "0.0.0-11" +} |