Skip to content

Commit

Permalink
fix: generate .a from .o for older emscripten
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromelaban committed Oct 28, 2024
1 parent 4c16aba commit a3a4ca5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -137,4 +137,5 @@ dist: dist/sqlite3.a
# See https://docs.microsoft.com/en-us/dotnet/standard/data/sqlite/custom-versions?tabs=netcore-cli#bundles for more details.
dist/sqlite3.a: $(BITCODE_FILES) $(EXPORTED_FUNCTIONS_JSON)
mkdir -p dist
$(EMCC) $(EMFLAGS) $(EMFLAGS_DIST) $(BITCODE_FILES) -r -o $@
$(EMCC) $(EMFLAGS) $(EMFLAGS_DIST) $(BITCODE_FILES) -r -o sqlite3.o
ar rcs sqlite3.a sqlite3.o
2 changes: 1 addition & 1 deletion src/nuget/uno.sqlite-wasm.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata minClientVersion="5.0.0">
<id>Uno.sqlite-wasm</id>
<version>3.40.0.4</version>
<version>3.40.0.5</version>
<title>Uno SQLite for WebAssembly</title>
<authors>Uno Platform</authors>
<owners>unoplatform</owners>
Expand Down

0 comments on commit a3a4ca5

Please sign in to comment.