Skip to content
This repository was archived by the owner on Sep 19, 2025. It is now read-only.

Commit b409bf1

Browse files
Add .gitignore entries for static image library directorys
1 parent d440881 commit b409bf1

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
with:
115115
repository: madler/zlib
116116
ref: 04f42ceca40f73e2978b50e93806c2a18c1281fc # v1.2.13
117-
path: zlib-1.2.13
117+
path: zlib
118118
clean: false
119119
- name: Install musl
120120
run: |
@@ -136,7 +136,7 @@ jobs:
136136
x86_64-linux-musl-gcc --version
137137
138138
# Build zlib with musl from source and install into the MUSL_HOME directory
139-
pushd zlib-1.2.13
139+
pushd zlib
140140
CC=musl-gcc ./configure --prefix=$MUSL_HOME --static
141141
make && make install
142142
popd

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ node_modules
22
npm-debug.log
33
yarn-error.log
44
/lerna-debug.log
5+
/musl-toolchain
56
/packages/google-closure-compiler/contrib/
67
/packages/google-closure-compiler/externs/
78
/packages/google-closure-compiler-java/compiler.jar
@@ -12,6 +13,7 @@ yarn-error.log
1213
/packages/google-closure-compiler-macos/compiler.jar
1314
/packages/google-closure-compiler-macos/compiler
1415
/packages/google-closure-compiler-windows/compiler.*
15-
/temp
1616
/publish-log.txt
17+
/temp
18+
/zlib
1719
.npmrc

build-scripts/graal.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ const NATIVE_IMAGE_BUILD_ARGS = ['-H:+UnlockExperimentalVMOptions'].concat(
6363
// '-H:+GenerateEmbeddedResourcesFile', // Available on Graal JDK 24 and newer
6464
'--report-unsupported-elements-at-runtime',
6565
'--initialize-at-build-time',
66+
'-march=compatibility',
6667
'--color=always',
6768
'-jar',
6869
path.resolve(process.cwd(), 'compiler.jar'),

0 commit comments

Comments
 (0)