Skip to content

Commit fdaacde

Browse files
authored
Officially introduce amalgamated builds (jerryscript-project#4416)
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]
1 parent dcf9252 commit fdaacde

File tree

16 files changed

+226
-307
lines changed

16 files changed

+226
-307
lines changed

CMakeLists.txt

+6-2
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ set(DOCTESTS OFF CACHE BOOL "Build doc tests?")
5959

6060
# Optional build settings
6161
set(BUILD_SHARED_LIBS OFF CACHE BOOL "Build shared libraries?")
62+
set(ENABLE_AMALGAM OFF CACHE BOOL "Enable amalgamated build?")
6263
set(ENABLE_LTO ON CACHE BOOL "Enable LTO build?")
6364
set(ENABLE_STRIP ON CACHE BOOL "Enable stripping all symbols from release binary?")
6465

@@ -104,8 +105,10 @@ if(USING_TI)
104105
endif()
105106

106107
if(USING_MSVC)
108+
set(ENABLE_AMALGAM ON) # FIXME: This should not be needed but right now it is. To be tracked down and followed up.
107109
set(ENABLE_STRIP OFF)
108110

111+
set(ENABLE_AMALGAM_MESSAGE " (FORCED BY COMPILER)")
109112
set(ENABLE_STRIP_MESSAGE " (FORCED BY COMPILER)")
110113
endif()
111114

@@ -121,6 +124,7 @@ message(STATUS "CMAKE_C_COMPILER_ID " ${CMAKE_C_COMPILER_ID})
121124
message(STATUS "CMAKE_SYSTEM_NAME " ${CMAKE_SYSTEM_NAME})
122125
message(STATUS "CMAKE_SYSTEM_PROCESSOR " ${CMAKE_SYSTEM_PROCESSOR})
123126
message(STATUS "BUILD_SHARED_LIBS " ${BUILD_SHARED_LIBS})
127+
message(STATUS "ENABLE_AMALGAM " ${ENABLE_AMALGAM} ${ENABLE_AMALGAM_MESSAGE})
124128
message(STATUS "ENABLE_LTO " ${ENABLE_LTO} ${ENABLE_LTO_MESSAGE})
125129
message(STATUS "ENABLE_STRIP " ${ENABLE_STRIP} ${ENABLE_STRIP_MESSAGE})
126130
message(STATUS "JERRY_VERSION " ${JERRY_VERSION})
@@ -247,8 +251,8 @@ if(DEFINED EXTERNAL_LINKER_FLAGS)
247251
jerry_add_link_flags(${EXTERNAL_LINKER_FLAGS})
248252
endif()
249253

250-
# Used for placeholder to attach single source build targets
251-
add_custom_target(generate-single-source)
254+
# Used as placeholder to attach amalgamated build targets to
255+
add_custom_target(amalgam)
252256

253257
# Jerry's libm
254258
if(JERRY_MATH)

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ before_build:
2323
- if "%PLATFORM%"=="x64" cmake -G"Visual Studio 15 2017 Win64" -Bbuild -H. -DJERRY_DEBUGGER=ON
2424
build:
2525
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.
2727
verbosity: minimal

docs/01.CONFIGURATION.md

+21-16
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,19 @@ A configuration option's value can be changed either by providing specific C pre
55
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.
66

77

8-
### All-in-one build
8+
### Amalgamated build
99

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.
1213

1314
| Options | |
1415
|---------|----------------------------------------------|
1516
| C: | `<none>` |
16-
| CMake: | `-DENABLE_ALL_IN_ONE=ON/OFF` |
17-
| Python: | `--all-in-one=ON/OFF` |
17+
| CMake: | `-DENABLE_AMALGAM=ON/OFF` |
18+
| Python: | `--amalgam=ON/OFF` |
19+
20+
See also: [Amalgamated sources](#amalgamated-sources)
1821

1922
### Jerry debugger
2023

@@ -278,18 +281,20 @@ This option is disabled by default.
278281
| Python: | `--mem-stress-test=ON/OFF` |
279282

280283

281-
# Single source build mode
284+
# Amalgamated sources
282285

283-
There is a special mode to use/"build" JerryScript. That is generating a single C file which can be
284-
included into projects quickly. To achive this the following command can be executed to create
285-
a set of files into the `gen_src` directory (Note that the command is executed in the jerryscript root directory
286-
but can be adapted to run outside of the project root dir):
286+
The sources of JerryScript can be combined into a handful of files to allow their easy integration
287+
in other projects. To achieve this, the following command can be executed to create a set of files
288+
into the `amalgam` directory:
287289

288290
```sh
289-
$ python tools/srcgenerator.py --output-dir gen_src --jerry-core --jerry-port-default --jerry-math
291+
$ python tools/amalgam.py --output-dir amalgam --jerry-core --jerry-port-default --jerry-math
290292
```
291293

292-
The command creates the following files in the `gen_src` dir:
294+
(Note: In the example above, the command is executed from the project's root directory, but that is
295+
not mandatory.)
296+
297+
The command creates the following files in the `amalgam` dir:
293298

294299
* `jerryscript.c`
295300
* `jerryscript.h`
@@ -304,15 +309,15 @@ should be adapted to the required use-case. See the file contents for more detai
304309
default configuration. (Note: This config file is created from the the `jerry-core/config.h` file.)
305310

306311
These files can be directly compiled with an application using the JerryScript API.
307-
For example with the following command:
312+
E.g., using a command similar to the one below:
308313

309314
```sh
310-
$ gcc -Wall -o demo_app demo_app.c gen_src/jerryscript.c gen_src/jerryscript-port-default.c jerryscript-math.c -Igen_src/
315+
$ gcc -Wall -o demo_app demo_app.c amalgam/jerryscript.c amalgam/jerryscript-port-default.c amalgam/jerryscript-math.c -Iamalgam/
311316
```
312317

313-
Please note that the headers must be available on the include path.
318+
(Note: The headers must be available on the include path.)
314319

315-
In addition there is a `-DENABLE_ALL_IN_ONE_SOURCE=ON` CMake option to use this kind of sources during the build.
320+
This approach is also under the hood of the [amalgamated build](#amalgamated-build) process.
316321

317322
# Target specific information
318323

jerry-core/CMakeLists.txt

+15-39
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ project (${JERRY_CORE_NAME} C)
1818

1919
include(CheckLibraryExists)
2020

21-
# Optional build settings
22-
set(ENABLE_ALL_IN_ONE OFF CACHE BOOL "Enable all-in-one build?")
23-
2421
# Optional features
2522
set(JERRY_CPOINTER_32_BIT OFF CACHE BOOL "Enable 32 bit compressed pointers?")
2623
set(JERRY_DEBUGGER OFF CACHE BOOL "Enable JerryScript debugger?")
@@ -46,12 +43,6 @@ set(JERRY_STACK_LIMIT "(0)" CACHE STRING "Maximum stack usa
4643
set(JERRY_GC_MARK_LIMIT "(8)" CACHE STRING "Maximum depth of recursion during GC mark phase")
4744

4845
# Option overrides
49-
if(USING_MSVC)
50-
set(ENABLE_ALL_IN_ONE ON) # FIXME: This should not be needed but right now it is. To be tracked down and followed up.
51-
52-
set(ENABLE_ALL_IN_ONE_MESSAGE " (FORCED BY COMPILER)")
53-
endif()
54-
5546
if(JERRY_SYSTEM_ALLOCATOR)
5647
set(JERRY_CPOINTER_32_BIT ON)
5748

@@ -85,7 +76,6 @@ if(JERRY_MEM_STATS OR JERRY_PARSER_DUMP_BYTE_CODE OR JERRY_REGEXP_DUMP_BYTE_CODE
8576
endif()
8677

8778
# Status messages
88-
message(STATUS "ENABLE_ALL_IN_ONE " ${ENABLE_ALL_IN_ONE} ${ENABLE_ALL_IN_ONE_MESSAGE})
8979
message(STATUS "JERRY_CPOINTER_32_BIT " ${JERRY_CPOINTER_32_BIT} ${JERRY_CPOINTER_32_BIT_MESSAGE})
9080
message(STATUS "JERRY_DEBUGGER " ${JERRY_DEBUGGER})
9181
message(STATUS "JERRY_ERROR_MESSAGES " ${JERRY_ERROR_MESSAGES})
@@ -147,55 +137,41 @@ file(GLOB SOURCE_CORE_FILES
147137
parser/regexp/*.c
148138
vm/*.c)
149139

150-
# All-in-one build
151-
if(ENABLE_ALL_IN_ONE)
152-
set(ALL_IN_FILE "${CMAKE_BINARY_DIR}/jerry-all-in.c")
153-
list(SORT SOURCE_CORE_FILES)
154-
file(REMOVE ${ALL_IN_FILE})
155-
156-
foreach(FILE ${SOURCE_CORE_FILES})
157-
file(APPEND ${ALL_IN_FILE} "#include \"${FILE}\"\n")
158-
endforeach()
159-
160-
set(SOURCE_CORE_FILES ${ALL_IN_FILE})
161-
endif()
162-
163-
# "Single" JerryScript source/header build.
140+
# Amalgamated JerryScript source/header build.
164141
# The process will create the following files:
165142
# * jerryscript.c
166143
# * jerryscript.h
167144
# * jerryscript-config.h
168-
if(ENABLE_ALL_IN_ONE_SOURCE)
145+
if(ENABLE_AMALGAM)
169146

170147
# Create single C/H file
171148
file(GLOB HEADER_CORE_FILES *.h)
172149

173150
# Generated files
174-
set(ALL_IN_FILE "${CMAKE_BINARY_DIR}/src/jerryscript.c")
175-
set(ALL_IN_FILE_H "${CMAKE_BINARY_DIR}/src/jerryscript.h")
176-
set(JERRYSCRIPT_CONFIG_H "${CMAKE_BINARY_DIR}/src/jerryscript-config.h")
151+
set(AMALGAM_CORE_C "${CMAKE_BINARY_DIR}/amalgam/jerryscript.c")
152+
set(AMALGAM_CORE_H "${CMAKE_BINARY_DIR}/amalgam/jerryscript.h")
153+
set(AMALGAM_CONFIG_H "${CMAKE_BINARY_DIR}/amalgam/jerryscript-config.h")
177154

178-
add_custom_command(OUTPUT ${ALL_IN_FILE} ${ALL_IN_FILE_H}
179-
COMMAND python ${CMAKE_SOURCE_DIR}/tools/srcgenerator.py
155+
add_custom_command(OUTPUT ${AMALGAM_CORE_C} ${AMALGAM_CORE_H}
156+
COMMAND python ${CMAKE_SOURCE_DIR}/tools/amalgam.py
180157
--jerry-core
181-
--output-dir ${CMAKE_BINARY_DIR}/src
158+
--output-dir ${CMAKE_BINARY_DIR}/amalgam
182159
DEPENDS ${SOURCE_CORE_FILES}
183160
${HEADER_CORE_FILES}
184-
${CMAKE_SOURCE_DIR}/tools/srcgenerator.py
185-
${CMAKE_SOURCE_DIR}/tools/srcmerger.py
161+
${CMAKE_SOURCE_DIR}/tools/amalgam.py
186162
)
187163

188164
# The "true" jerryscript-config.h will be generated by the configure_file below,
189165
# which contains the default options and the ones passed for the CMake.
190166
# The input for this is the jerryscript-config.h generated by the command above.
191167
set(JERRYSCRIPT_GEN_CONFIG_H ${CMAKE_CURRENT_BINARY_DIR}/jerryscript-config.h)
192-
add_custom_command(OUTPUT ${JERRYSCRIPT_CONFIG_H}
193-
COMMAND ${CMAKE_COMMAND} -E copy ${JERRYSCRIPT_GEN_CONFIG_H} ${JERRYSCRIPT_CONFIG_H}
194-
DEPENDS ${ALL_IN_FILE_C} ${ALL_IN_FILE_H})
195-
add_custom_target(generate-single-source-jerry DEPENDS ${ALL_IN_FILE} ${ALL_IN_FILE_H})
196-
add_dependencies(generate-single-source generate-single-source-jerry)
168+
add_custom_command(OUTPUT ${AMALGAM_CONFIG_H}
169+
COMMAND ${CMAKE_COMMAND} -E copy ${JERRYSCRIPT_GEN_CONFIG_H} ${AMALGAM_CONFIG_H}
170+
DEPENDS ${AMALGAM_CORE_C} ${AMALGAM_CORE_H})
171+
add_custom_target(amalgam-jerry DEPENDS ${AMALGAM_CORE_C} ${AMALGAM_CORE_H} ${AMALGAM_CONFIG_H})
172+
add_dependencies(amalgam amalgam-jerry)
197173

198-
set(SOURCE_CORE_FILES ${ALL_IN_FILE} ${ALL_IN_FILE_H} ${JERRYSCRIPT_CONFIG_H})
174+
set(SOURCE_CORE_FILES ${AMALGAM_CORE_C} ${AMALGAM_CORE_H} ${AMALGAM_CONFIG_H})
199175
endif()
200176

201177
# Third-party

jerry-math/CMakeLists.txt

+11-12
Original file line numberDiff line numberDiff line change
@@ -30,28 +30,27 @@ set(INCLUDE_MATH "${CMAKE_CURRENT_SOURCE_DIR}/include")
3030
# Source directories
3131
file(GLOB SOURCE_MATH *.c)
3232

33-
# "Single" JerryScript libm source/header build.
33+
# Amalgamated JerryScript source/header build.
3434
# The process will create the following files:
3535
# * jerryscript-math.c
3636
# * math.h
37-
if(ENABLE_ALL_IN_ONE_SOURCE)
37+
if(ENABLE_AMALGAM)
3838
file(GLOB HEADER_MATH *.h)
39-
set(ALL_IN_FILE "${CMAKE_BINARY_DIR}/src/jerryscript-math.c")
40-
set(ALL_IN_FILE_H "${CMAKE_BINARY_DIR}/src/math.h")
39+
set(AMALGAM_MATH_C "${CMAKE_BINARY_DIR}/amalgam/jerryscript-math.c")
40+
set(AMALGAM_MATH_H "${CMAKE_BINARY_DIR}/amalgam/math.h")
4141

42-
add_custom_command(OUTPUT ${ALL_IN_FILE} ${ALL_IN_FILE_H} ${JERRYSCRIPT_CONFIG_H}
43-
COMMAND python ${CMAKE_SOURCE_DIR}/tools/srcgenerator.py
42+
add_custom_command(OUTPUT ${AMALGAM_MATH_C} ${AMALGAM_MATH_H}
43+
COMMAND python ${CMAKE_SOURCE_DIR}/tools/amalgam.py
4444
--jerry-math
45-
--output-dir ${CMAKE_BINARY_DIR}/src
45+
--output-dir ${CMAKE_BINARY_DIR}/amalgam
4646
DEPENDS ${SOURCE_MATH}
4747
${HEADER_MATH}
48-
${CMAKE_SOURCE_DIR}/tools/srcgenerator.py
49-
${CMAKE_SOURCE_DIR}/tools/srcmerger.py
48+
${CMAKE_SOURCE_DIR}/tools/amalgam.py
5049
)
51-
add_custom_target(generate-single-source-math DEPENDS ${ALL_IN_FILE} ${ALL_IN_FILE_H})
52-
add_dependencies(generate-single-source generate-single-source-math)
50+
add_custom_target(amalgam-math DEPENDS ${AMALGAM_MATH_C} ${AMALGAM_MATH_H})
51+
add_dependencies(amalgam amalgam-math)
5352

54-
set(SOURCE_MATH ${ALL_IN_FILE} ${ALL_IN_FILE_H})
53+
set(SOURCE_MATH ${AMALGAM_MATH_C} ${AMALGAM_MATH_H})
5554
endif()
5655

5756
add_library(${JERRY_MATH_NAME} ${SOURCE_MATH})

jerry-port/default/CMakeLists.txt

+11-12
Original file line numberDiff line numberDiff line change
@@ -22,28 +22,27 @@ set(INCLUDE_PORT_DEFAULT "${CMAKE_CURRENT_SOURCE_DIR}/include")
2222
# Source directories
2323
file(GLOB SOURCE_PORT_DEFAULT *.c)
2424

25-
# "Single" JerryScript source/header build.
25+
# Amalgamated JerryScript source/header build.
2626
# The process will create the following files:
2727
# * jerryscript-port-default.c
2828
# * jerryscript-port-default.h
29-
if(ENABLE_ALL_IN_ONE_SOURCE)
29+
if(ENABLE_AMALGAM)
3030
file(GLOB HEADER_PORT_DEFAULT *.h)
31-
set(ALL_IN_FILE "${CMAKE_BINARY_DIR}/src/jerryscript-port-default.c")
32-
set(ALL_IN_FILE_H "${CMAKE_BINARY_DIR}/src/jerryscript-port-default.h")
31+
set(AMALGAM_PORT_C "${CMAKE_BINARY_DIR}/amalgam/jerryscript-port-default.c")
32+
set(AMALGAM_PORT_H "${CMAKE_BINARY_DIR}/amalgam/jerryscript-port-default.h")
3333

34-
add_custom_command(OUTPUT ${ALL_IN_FILE} ${ALL_IN_FILE_H} ${JERRYSCRIPT_CONFIG_H}
35-
COMMAND python ${CMAKE_SOURCE_DIR}/tools/srcgenerator.py
34+
add_custom_command(OUTPUT ${AMALGAM_PORT_C} ${AMALGAM_PORT_H}
35+
COMMAND python ${CMAKE_SOURCE_DIR}/tools/amalgam.py
3636
--jerry-port-default
37-
--output-dir ${CMAKE_BINARY_DIR}/src
37+
--output-dir ${CMAKE_BINARY_DIR}/amalgam
3838
DEPENDS ${SOURCE_PORT_DEFAULT}
3939
${HEADER_PORT_DEFAULT}
40-
${CMAKE_SOURCE_DIR}/tools/srcgenerator.py
41-
${CMAKE_SOURCE_DIR}/tools/srcmerger.py
40+
${CMAKE_SOURCE_DIR}/tools/amalgam.py
4241
)
43-
add_custom_target(generate-single-source-port DEPENDS ${ALL_IN_FILE} ${ALL_IN_FILE_H})
44-
add_dependencies(generate-single-source generate-single-source-port)
42+
add_custom_target(amalgam-port DEPENDS ${AMALGAM_PORT_C} ${AMALGAM_PORT_H})
43+
add_dependencies(amalgam amalgam-port)
4544

46-
set(SOURCE_PORT_DEFAULT ${ALL_IN_FILE} ${ALL_IN_FILE_H})
45+
set(SOURCE_PORT_DEFAULT ${AMALGAM_PORT_C} ${AMALGAM_PORT_H})
4746
endif()
4847

4948
# Define _BSD_SOURCE and _DEFAULT_SOURCE

targets/esp8266/Makefile.esp8266

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jerry:
4949
-DCMAKE_C_COMPILER=xtensa-lx106-elf-gcc \
5050
-DCMAKE_C_COMPILER_WORKS=TRUE \
5151
-DENABLE_LTO=OFF \
52-
-DENABLE_ALL_IN_ONE=ON \
52+
-DENABLE_AMALGAM=ON \
5353
-DJERRY_MATH=ON \
5454
-DJERRY_CMDLINE=OFF \
5555
-DJERRY_PROFILE="es5.1" \

targets/nuttx-stm32f4/Makefile.travis

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ install: install-apt-get-deps install-noapt
5151

5252
# Build JerryScript.
5353
script-build-jerryscript:
54-
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'
5555

5656
# Link in the NuttX JerryScript target directory under the NuttX apps tree.
5757
script-add-jerryscript-app:

targets/nuttx-stm32f4/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jerryscript/tools/build.py \
4242
--lto=OFF \
4343
--jerry-cmdline=OFF \
4444
--jerry-math=ON \
45-
--all-in-one=ON \
45+
--amalgam=ON \
4646
--mem-heap=70 \
4747
--profile=es.next \
4848
--compile-flag="--sysroot=${PWD}/nuttx" \

targets/particle/Makefile.particle

-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ jerrycore:
4444
-DCMAKE_C_COMPILER=arm-none-eabi-gcc \
4545
-DCMAKE_C_COMPILER_WORKS=TRUE \
4646
-DENABLE_LTO=ON \
47-
-DENABLE_ALL_IN_ONE=OFF \
4847
-DJERRY_CMDLINE=OFF \
4948
-DJERRY_PROFILE=minimal \
5049
-DENABLE_STRIP=OFF \

targets/riot-stm32f4/Makefile.riot

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ libjerry:
4646
-DCMAKE_C_COMPILER=$(CC) \
4747
-DCMAKE_C_COMPILER_WORKS=TRUE \
4848
-DENABLE_LTO=OFF \
49-
-DENABLE_ALL_IN_ONE=OFF \
5049
-DJERRY_CMDLINE=OFF \
5150
-DJERRY_PROFILE="es5.1" \
5251
-DEXTERNAL_COMPILE_FLAGS="$(EXT_CFLAGS)" \

targets/zephyr/Makefile.zephyr

-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ endif
8282
-DCMAKE_C_COMPILER="$(subst ccache ,,$(CC))" \
8383
-DCMAKE_C_COMPILER_WORKS=TRUE \
8484
-DENABLE_LTO=OFF \
85-
-DENABLE_ALL_IN_ONE=OFF \
8685
-DJERRY_CMDLINE=OFF \
8786
-DJERRY_PROFILE=$(JERRYPROFILE) \
8887
-DJERRY_ERROR_MESSAGES=ON \

0 commit comments

Comments
 (0)