@cpp.js/package-expat 1.0.0-beta.22 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md ADDED
@@ -0,0 +1,13 @@
1
+ # @cpp.js/package-expat
2
+
3
+ ## 1.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - 🚀 first stable release
8
+
9
+ ## 1.0.0-beta.23
10
+
11
+ ### Patch Changes
12
+
13
+ - chore: add initial version of CHANGELOGS files
package/README.md CHANGED
@@ -47,4 +47,4 @@ std::string Native::sample() {
47
47
  ## License
48
48
  This project includes the precompiled expat library, which is distributed under the [MIT License](https://github.com/libexpat/libexpat/blob/master/COPYING).
49
49
 
50
- Expat Homepage: <https://github.com/libexpat/libexpat>
50
+ Expat Homepage: [https://github.com/libexpat/libexpat](https://github.com/libexpat/libexpat)
package/cppjs.build.js CHANGED
@@ -1,6 +1,7 @@
1
1
  const platformBuild = {
2
2
  'Emscripten-x86_64': ['--enable-shared=no', '--host=wasm32-unknown-emscripten'],
3
3
  'Android-arm64-v8a': ['--enable-static=no', '--host=aarch64-linux-android'],
4
+ 'Android-x86_64': ['--enable-static=no', '--host=x86_64-linux-android'],
4
5
  'iOS-iphoneos': ['--enable-shared=no', '--host=arm-apple-darwin'],
5
6
  'iOS-iphonesimulator': ['--enable-shared=no', '--host=x86_64-apple-darwin'],
6
7
  };