Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ jobs:
yarn build --target ${{ matrix.settings.target }} -x
yarn build --target ${{ matrix.settings.target }} -x --release
elif [[ "${{ matrix.settings.target }}" == *"gnu"* ]]; then
export CFLAGS="-fuse-ld=lld"
export CC=clang
export TARGET_CFLAGS="-fuse-ld=lld"
export TARGET_CC=clang
yarn build --target ${{ matrix.settings.target }} --use-napi-cross
yarn build --target ${{ matrix.settings.target }} --use-napi-cross --release
elif [[ "${{ matrix.settings.target }}" == *"msvc"* ]]; then
Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "libmimalloc-sys/c_src/mimalloc"]
path = libmimalloc-sys/c_src/mimalloc
url = https://github.com/napi-rs/mimalloc.git
url = https://github.com/microsoft/mimalloc.git
3 changes: 3 additions & 0 deletions example/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/* auto-generated by NAPI-RS */
/* eslint-disable */
export declare function hello(): string
Loading
Loading