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
Remove redundancy between all-in-one and all-in-one-source builds
by keeping only the second, and adopt the more established term
"amalgamated" build for it. This change includes the following:
- Replace `ENABLE_ALL_IN_ONE` and `ENABLE_ALL_IN_ONE_SOURCE` cmake
options with `ENABLE_AMALGAM` top-level option.
- Replace `--all-in-one` option of `build.py` helper with
`--amalgam`.
- Merge the `srcmerger.py` and `srcgenerator.py` tool scripts into
`amalgam.py` (with improvements).
- Update documentation.
JerryScript-DCO-1.0-Signed-off-by: Akos Kiss [email protected]
Copy file name to clipboardexpand all lines: appveyor.yml
+1-1
Original file line number
Diff line number
Diff line change
@@ -23,5 +23,5 @@ before_build:
23
23
- if "%PLATFORM%"=="x64" cmake -G"Visual Studio 15 2017 Win64" -Bbuild -H. -DJERRY_DEBUGGER=ON
24
24
build:
25
25
project: build\Jerry.sln
26
-
parallel: true
26
+
parallel: false # FIXME: This should not be needed but right now it is: msbuild generates all amalgamated files twice, at the same time in parallel builds, leading to I/O errors.
Copy file name to clipboardexpand all lines: docs/01.CONFIGURATION.md
+21-16
Original file line number
Diff line number
Diff line change
@@ -5,16 +5,19 @@ A configuration option's value can be changed either by providing specific C pre
5
5
This document lists the available configuration options, shows the configuration name for C, CMake, and python, and provides a brief description that explains the effect of the options.
6
6
7
7
8
-
### All-in-one build
8
+
### Amalgamated build
9
9
10
-
Enables the All-in-one build process, which aggregates the contents of each source file, and uses this combined file to compile the JerryScript library.
11
-
This process can provide comparable results to link time optimization, and can be useful when LTO is not available otherwise.
10
+
Enables the amalgamated build process, which aggregates the contents of each source file per library
11
+
(i.e., JerryScript's core, port, and math libraries), and uses these combined files to compile the project.
12
+
This process can provide comparable results to link-time optimization, and can be useful when LTO is not available otherwise.
tools/build.py --clean --toolchain cmake/toolchain_mcu_stm32f4.cmake --profile=es.next --jerry-cmdline OFF --lto OFF --jerry-math ON --all-in-one ON --jerry-port-default OFF --mem-heap 70 --compile-flag='--sysroot=../nuttx'
54
+
tools/build.py --clean --toolchain cmake/toolchain_mcu_stm32f4.cmake --profile=es.next --jerry-cmdline OFF --lto OFF --jerry-math ON --amalgam ON --jerry-port-default OFF --mem-heap 70 --compile-flag='--sysroot=../nuttx'
55
55
56
56
# Link in the NuttX JerryScript target directory under the NuttX apps tree.
0 commit comments