aboutsummaryrefslogtreecommitdiff
path: root/jerry-libc
diff options
context:
space:
mode:
authorAkos Kiss <akiss@inf.u-szeged.hu>2016-02-08 10:44:08 +0100
committerAkos Kiss <akiss@inf.u-szeged.hu>2016-02-15 18:05:01 +0100
commitf959ba95a46ac50c0fbbd07eb650982ad111d740 (patch)
treebfa67028a4c6e4bbf5056f4e35945229d51a01ed /jerry-libc
parent977bfa5d2cc5c60eec587e8f406715f415a3c57b (diff)
Refactoring the build system
* Removed unused or unnecessary parts from various make files * Eliminated lots of duplications from Makefile with the help of macros. * Split tools/precommit.sh to its independent components: * the part that checks the existence of the "signed off" text in commit messages (this on got factored out to tools/check-signed-off.sh), * the part that uses vera++ for style checking (this one got factored out to tools/check-vera.sh), * the part that invokes targets in the cmake-generated build directory, and * the part that performs various tests (these latter two got moved into the Makefile). * Moved the functionality of precommit-full-testing.sh into the Makefile, too. * Added ninja build system support (e.g., `make NINJA=1`). * Updated leading documentation comments (they were somewhat stale). * Tried to keep the target names exactly the same as they were -- almost succeeded... (some changes are intentional, and are subject to personal preferences). * Simplified console output of `make precommit` * Unified test runner scripts and their output format * Eliminated nothing-to-stdout everything-to-log-file policy: info is printed to stdout and it is the caller's responsibility to redirect it to a file if needed. * Also applied some renaming and coding style unification to the scripts. * Merged the functionality of tools/runners/run-test-suite-jerry*.sh into the Makefile * Merged everything related to a test suite execution in a single script. * The new script also allows to specify pass and xfail tests in a single list file, which was not possible hitherto. * Also, the paths of the test cases given in a file are interpreted relative to their container files. JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu
Diffstat (limited to 'jerry-libc')
-rw-r--r--jerry-libc/CMakeLists.txt2
1 files changed, 0 insertions, 2 deletions
diff --git a/jerry-libc/CMakeLists.txt b/jerry-libc/CMakeLists.txt
index bc1720e0..5caac1ae 100644
--- a/jerry-libc/CMakeLists.txt
+++ b/jerry-libc/CMakeLists.txt
@@ -144,8 +144,6 @@ set(COMPILE_FLAGS_LIBC "${COMPILE_FLAGS_JERRY} ${C_FLAGS_JERRY}")
target_include_directories(${TARGET_NAME}${SUFFIX_THIRD_PARTY_LIB} PRIVATE ${INCLUDE_THIRD_PARTY_${PLATFORM_EXT}})
target_include_directories(${TARGET_NAME}${SUFFIX_THIRD_PARTY_LIB} SYSTEM PRIVATE ${INCLUDE_LIBC_INTERFACE})
target_link_libraries(${TARGET_NAME}.lib ${TARGET_NAME}${SUFFIX_THIRD_PARTY_LIB})
-
- target_link_libraries(${TARGET_NAME}.lib ${TARGET_NAME}${SUFFIX_THIRD_PARTY_LIB})
endif()
endfunction()