mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
- `finite` is not C99 but a BSD fp classification function, so it is removed. - The standard specifies that `isnan` is a macro (just like `isfinite` and `isinf`), so the `isnan` function implementation is removed. - `isfinite` incorrectly classified NAN as finite, which is fixed. - `isinf` returned 1 for negative infinity. This is not a bug according to the standard, but is not aligned with recent glibc, which returns -1. This is changed to simplify testing. - Added test cases for `isfinite` and `isinf` to the unit test of jerry-math. - Added a new pass to unittests to ensure that jerry-math is tested. JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu
98 lines
2.9 KiB
CMake
98 lines
2.9 KiB
CMake
# Copyright JS Foundation and other contributors, http://js.foundation
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
cmake_minimum_required (VERSION 2.8.12)
|
|
set(JERRY_MATH_NAME jerry-math)
|
|
project (${JERRY_MATH_NAME} C)
|
|
|
|
# Compiler / linker flags
|
|
# TODO: Reduce the below list of warning/error disablings as much as possible
|
|
set(COMPILE_FLAGS_MATH "${COMPILE_FLAGS_MATH} -Wno-error=sign-compare")
|
|
set(COMPILE_FLAGS_MATH "${COMPILE_FLAGS_MATH} -Wno-error=sign-conversion")
|
|
set(COMPILE_FLAGS_MATH "${COMPILE_FLAGS_MATH} -Wno-sign-conversion")
|
|
set(COMPILE_FLAGS_MATH "${COMPILE_FLAGS_MATH} -Wno-sign-compare")
|
|
set(COMPILE_FLAGS_MATH "${COMPILE_FLAGS_MATH} -Wno-strict-aliasing")
|
|
|
|
# Include directories
|
|
set(INCLUDE_MATH "${CMAKE_CURRENT_SOURCE_DIR}/include")
|
|
|
|
# Source directories
|
|
set(SOURCE_MATH
|
|
acos.c
|
|
acosh.c
|
|
asin.c
|
|
asinh.c
|
|
atan.c
|
|
atan2.c
|
|
atanh.c
|
|
cbrt.c
|
|
ceil.c
|
|
copysign.c
|
|
cosh.c
|
|
exp.c
|
|
expm1.c
|
|
fabs.c
|
|
floor.c
|
|
fmod.c
|
|
log.c
|
|
log10.c
|
|
log1p.c
|
|
log2.c
|
|
nextafter.c
|
|
pow.c
|
|
scalbn.c
|
|
sinh.c
|
|
sqrt.c
|
|
tanh.c
|
|
trig.c
|
|
)
|
|
|
|
# Amalgamated JerryScript source/header build.
|
|
# The process will create the following files:
|
|
# * jerryscript-math.c
|
|
# * math.h
|
|
if(ENABLE_AMALGAM)
|
|
set(HEADER_MATH
|
|
include/math.h
|
|
jerry-math-internal.h
|
|
)
|
|
set(AMALGAM_MATH_C "${CMAKE_BINARY_DIR}/amalgam/jerryscript-math.c")
|
|
set(AMALGAM_MATH_H "${CMAKE_BINARY_DIR}/amalgam/math.h")
|
|
|
|
add_custom_command(OUTPUT ${AMALGAM_MATH_C} ${AMALGAM_MATH_H}
|
|
COMMAND python ${CMAKE_SOURCE_DIR}/tools/amalgam.py
|
|
--jerry-math
|
|
--output-dir ${CMAKE_BINARY_DIR}/amalgam
|
|
DEPENDS ${SOURCE_MATH}
|
|
${HEADER_MATH}
|
|
${CMAKE_SOURCE_DIR}/tools/amalgam.py
|
|
)
|
|
add_custom_target(amalgam-math DEPENDS ${AMALGAM_MATH_C} ${AMALGAM_MATH_H})
|
|
add_dependencies(amalgam amalgam-math)
|
|
|
|
set(SOURCE_MATH ${AMALGAM_MATH_C} ${AMALGAM_MATH_H})
|
|
endif()
|
|
|
|
add_library(${JERRY_MATH_NAME} ${SOURCE_MATH})
|
|
set_property(TARGET ${JERRY_MATH_NAME}
|
|
PROPERTY COMPILE_FLAGS "${COMPILE_FLAGS_MATH}")
|
|
|
|
target_include_directories(${JERRY_MATH_NAME} PUBLIC ${INCLUDE_MATH})
|
|
|
|
configure_file(libjerry-math.pc.in libjerry-math.pc @ONLY)
|
|
|
|
install(TARGETS ${JERRY_MATH_NAME} DESTINATION lib)
|
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libjerry-math.pc DESTINATION lib/pkgconfig)
|
|
install(DIRECTORY ${INCLUDE_MATH}/ DESTINATION include/jerryscript-math)
|