Skip to content

Commit

Permalink
Create separate profile binary and strip debug symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarred-Sumner committed Oct 4, 2021
1 parent 139622e commit 7ac4abf
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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;)



Expand Down
4 changes: 4 additions & 0 deletions packages/bun-cli-darwin-aarch64/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
bin/bun-profile
bin/*.o
*.o
*.a
4 changes: 4 additions & 0 deletions packages/bun-cli-darwin-x64/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
bin/bun-profile
bin/*.o
*.o
*.a
4 changes: 4 additions & 0 deletions packages/bun-cli-linux-x64/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
bin/bun-profile
bin/*.o
*.o
*.a
8 changes: 8 additions & 0 deletions packages/bun-cli-linux-x64/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"directories": {
"bin": "bin"
},
"name": "bun-cli-linux-x64",
"repository": "https://github.com/jarred-sumner/bun",
"version": "0.0.0-11"
}

0 comments on commit 7ac4abf

Please sign in to comment.