You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`JAVA_HOME` such that `$JAVA_HOME/bin/java` points to your Java executable
81
74
-`ANDROID_HOME` pointing to where you have installed the Android SDK
82
75
-`ANDROID_NDK_HOME` pointing to the version of the Android NDK needed for this version of NativeScript
83
76
84
-
Run command
85
-
86
-
Windows:
77
+
Run the following command to build the runtime:
87
78
88
-
```Shell
89
-
gradlew -Pengine=V8
90
79
```
91
-
92
-
Mac/Linux:
93
-
94
-
```Shell
95
-
./gradlew -Pengine=V8
80
+
npm run build
96
81
```
97
-
98
-
You can pass in `QUICKJS`, `HERMES`, `JSC` or `V8` to compile the runtime with the respective JS engine.
82
+
The command will let you interactively choose the JS engine you want to build with. i.e V8, QuickJS, Hermes or JSC, PrimJS, Static Hermes.
99
83
100
84
- The build process includes building of the runtime package (both optimized and with unstripped v8 symbol table), as well as all supplementary tools used for the android builds: metadata-generator, binding-generator, metadata-generator, static-binding-generator
101
85
- The result of the build will be in the dist\_[engine] folder. For example if you are building with V8, the result will be in the dist_v8 folder.
0 commit comments