2009-06-28 23:50:27 +02:00
|
|
|
cmake_minimum_required(VERSION 2.6)
|
2015-06-24 15:01:15 +02:00
|
|
|
project("mbed TLS" C)
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-07-08 23:10:38 +02:00
|
|
|
option(USE_PKCS11_HELPER_LIBRARY "Build mbed TLS with the pkcs11-helper library." OFF)
|
|
|
|
option(ENABLE_ZLIB_SUPPORT "Build mbed TLS with zlib library." OFF)
|
|
|
|
|
|
|
|
option(ENABLE_PROGRAMS "Build mbed TLS programs." ON)
|
2015-07-09 10:19:47 +02:00
|
|
|
|
2016-06-21 11:14:00 +02:00
|
|
|
option(UNSAFE_BUILD "Allow unsafe builds. These builds ARE NOT SECURE." OFF)
|
2015-07-09 10:19:47 +02:00
|
|
|
|
|
|
|
# the test suites currently have compile errors with MSVC
|
|
|
|
if(MSVC)
|
|
|
|
option(ENABLE_TESTING "Build mbed TLS tests." OFF)
|
|
|
|
else()
|
|
|
|
option(ENABLE_TESTING "Build mbed TLS tests." ON)
|
|
|
|
endif()
|
2015-07-08 23:10:38 +02:00
|
|
|
|
2016-06-21 15:47:11 +02:00
|
|
|
# Warning string - created as a list for compatibility with CMake 2.8
|
|
|
|
set(WARNING_BORDER "*******************************************************\n")
|
|
|
|
set(NULL_ENTROPY_WARN_L1 "**** WARNING! MBEDTLS_TEST_NULL_ENTROPY defined!\n")
|
|
|
|
set(NULL_ENTROPY_WARN_L2 "**** THIS BUILD HAS NO DEFINED ENTROPY SOURCES\n")
|
|
|
|
set(NULL_ENTROPY_WARN_L3 "**** AND IS *NOT* SUITABLE FOR PRODUCTION USE\n")
|
|
|
|
|
|
|
|
set(NULL_ENTROPY_WARNING "${WARNING_BORDER}"
|
|
|
|
"${NULL_ENTROPY_WARN_L1}"
|
|
|
|
"${NULL_ENTROPY_WARN_L2}"
|
|
|
|
"${NULL_ENTROPY_WARN_L3}"
|
|
|
|
"${WARNING_BORDER}")
|
|
|
|
|
2016-06-21 11:14:00 +02:00
|
|
|
find_package(Perl)
|
|
|
|
if(PERL_FOUND)
|
|
|
|
|
|
|
|
# If NULL Entropy is configured, display an appropriate warning
|
2016-08-31 18:33:13 +02:00
|
|
|
execute_process(COMMAND ${PERL_EXECUTABLE} ${CMAKE_SOURCE_DIR}/scripts/config.pl -f ${CMAKE_SOURCE_DIR}/include/mbedtls/config.h get MBEDTLS_TEST_NULL_ENTROPY
|
2016-06-21 11:14:00 +02:00
|
|
|
RESULT_VARIABLE result)
|
|
|
|
if(${result} EQUAL 0)
|
2016-06-21 15:47:11 +02:00
|
|
|
message(WARNING ${NULL_ENTROPY_WARNING})
|
|
|
|
|
2016-06-21 11:14:00 +02:00
|
|
|
if(NOT UNSAFE_BUILD)
|
|
|
|
message(FATAL_ERROR "\
|
|
|
|
\n\
|
|
|
|
Warning! You have enabled MBEDTLS_TEST_NULL_ENTROPY. \
|
|
|
|
This option is not safe for production use and negates all security \
|
|
|
|
It is intended for development use only. \
|
|
|
|
\n\
|
|
|
|
To confirm you want to build with this option, re-run cmake with the \
|
|
|
|
option: \n\
|
|
|
|
cmake -DUNSAFE_BUILD=ON ")
|
|
|
|
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2015-07-08 23:10:38 +02:00
|
|
|
set(CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE}
|
|
|
|
CACHE STRING "Choose the type of build: None Debug Release Coverage ASan ASanDbg MemSan MemSanDbg Check CheckFull"
|
|
|
|
FORCE)
|
|
|
|
|
2014-04-24 02:40:25 +02:00
|
|
|
string(REGEX MATCH "Clang" CMAKE_COMPILER_IS_CLANG "${CMAKE_C_COMPILER_ID}")
|
2013-12-30 17:56:23 +01:00
|
|
|
|
2011-07-27 18:52:28 +02:00
|
|
|
if(CMAKE_COMPILER_IS_GNUCC)
|
2015-07-19 16:00:04 +02:00
|
|
|
# some warnings we want are not available with old GCC versions
|
|
|
|
# note: starting with CMake 2.8 we could use CMAKE_C_COMPILER_VERSION
|
|
|
|
execute_process(COMMAND ${CMAKE_C_COMPILER} -dumpversion
|
|
|
|
OUTPUT_VARIABLE GCC_VERSION)
|
2015-08-27 23:00:49 +02:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings")
|
2015-07-19 16:00:04 +02:00
|
|
|
if (GCC_VERSION VERSION_GREATER 4.5 OR GCC_VERSION VERSION_EQUAL 4.5)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wlogical-op")
|
|
|
|
endif()
|
2015-08-27 23:00:49 +02:00
|
|
|
if (GCC_VERSION VERSION_GREATER 4.8 OR GCC_VERSION VERSION_EQUAL 4.8)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wshadow")
|
|
|
|
endif()
|
2015-06-25 09:20:03 +02:00
|
|
|
set(CMAKE_C_FLAGS_RELEASE "-O2")
|
|
|
|
set(CMAKE_C_FLAGS_DEBUG "-O0 -g3")
|
|
|
|
set(CMAKE_C_FLAGS_COVERAGE "-O0 -g3 --coverage")
|
|
|
|
set(CMAKE_C_FLAGS_ASAN "-Werror -fsanitize=address -fno-common -O3")
|
|
|
|
set(CMAKE_C_FLAGS_ASANDBG "-Werror -fsanitize=address -fno-common -O1 -g3 -fno-omit-frame-pointer -fno-optimize-sibling-calls ")
|
|
|
|
set(CMAKE_C_FLAGS_CHECK "-Werror -Os")
|
|
|
|
set(CMAKE_C_FLAGS_CHECKFULL "${CMAKE_C_FLAGS_CHECK} -Wcast-qual")
|
2011-07-27 18:52:28 +02:00
|
|
|
endif(CMAKE_COMPILER_IS_GNUCC)
|
2013-11-28 17:20:04 +01:00
|
|
|
|
2013-12-30 17:56:23 +01:00
|
|
|
if(CMAKE_COMPILER_IS_CLANG)
|
2015-08-27 12:02:40 +02:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wpointer-arith -Wimplicit-fallthrough -Wshadow")
|
2015-06-25 09:20:03 +02:00
|
|
|
set(CMAKE_C_FLAGS_RELEASE "-O2")
|
|
|
|
set(CMAKE_C_FLAGS_DEBUG "-O0 -g3")
|
|
|
|
set(CMAKE_C_FLAGS_COVERAGE "-O0 -g3 --coverage")
|
|
|
|
set(CMAKE_C_FLAGS_ASAN "-Werror -fsanitize=address -fno-common -fsanitize=undefined -fno-sanitize-recover -O3")
|
|
|
|
set(CMAKE_C_FLAGS_ASANDBG "-Werror -fsanitize=address -fno-common -fsanitize=undefined -fno-sanitize-recover -O1 -g3 -fno-omit-frame-pointer -fno-optimize-sibling-calls ")
|
|
|
|
set(CMAKE_C_FLAGS_MEMSAN "-Werror -fsanitize=memory -O3")
|
|
|
|
set(CMAKE_C_FLAGS_MEMSANDBG "-Werror -fsanitize=memory -O1 -g3 -fno-omit-frame-pointer -fno-optimize-sibling-calls -fsanitize-memory-track-origins=2")
|
|
|
|
set(CMAKE_C_FLAGS_CHECK "-Werror -Os")
|
2013-12-30 17:56:23 +01:00
|
|
|
endif(CMAKE_COMPILER_IS_CLANG)
|
|
|
|
|
2015-07-01 17:06:28 +02:00
|
|
|
if(MSVC)
|
|
|
|
set(CMAKE_C_FLAGS_CHECK "/WX")
|
|
|
|
endif(MSVC)
|
|
|
|
|
2009-07-11 21:54:40 +02:00
|
|
|
if(CMAKE_BUILD_TYPE STREQUAL "Coverage")
|
2015-06-25 09:20:03 +02:00
|
|
|
if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_CLANG)
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS "--coverage")
|
|
|
|
endif(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_CLANG)
|
2009-07-11 21:54:40 +02:00
|
|
|
endif(CMAKE_BUILD_TYPE STREQUAL "Coverage")
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2011-07-13 13:45:58 +02:00
|
|
|
if(LIB_INSTALL_DIR)
|
|
|
|
else()
|
2015-06-25 09:20:03 +02:00
|
|
|
set(LIB_INSTALL_DIR lib)
|
2011-07-13 13:45:58 +02:00
|
|
|
endif()
|
|
|
|
|
2009-06-28 23:50:27 +02:00
|
|
|
include_directories(include/)
|
|
|
|
|
2012-07-03 17:10:33 +02:00
|
|
|
if(ENABLE_ZLIB_SUPPORT)
|
2015-06-25 09:20:03 +02:00
|
|
|
find_package(ZLIB)
|
2012-07-03 17:10:33 +02:00
|
|
|
|
2015-06-25 09:20:03 +02:00
|
|
|
if(ZLIB_FOUND)
|
|
|
|
include_directories(${ZLIB_INCLUDE_DIR})
|
|
|
|
endif(ZLIB_FOUND)
|
2012-07-03 17:10:33 +02:00
|
|
|
endif(ENABLE_ZLIB_SUPPORT)
|
|
|
|
|
2009-06-28 23:50:27 +02:00
|
|
|
add_subdirectory(library)
|
2011-01-05 16:07:54 +01:00
|
|
|
add_subdirectory(include)
|
2011-07-27 18:52:28 +02:00
|
|
|
|
2014-03-26 13:27:51 +01:00
|
|
|
if(ENABLE_PROGRAMS)
|
2015-06-25 09:20:03 +02:00
|
|
|
add_subdirectory(programs)
|
2014-03-26 13:27:51 +01:00
|
|
|
endif()
|
2011-01-05 16:30:32 +01:00
|
|
|
|
Revert changes done to 'make apidoc' target
This partially reverts 1989caf71c1d4 (only the changes to Makefile and
CMakeLists, the addition to scripts/config.pl is kept).
Modifying config.h in the apidoc target creates a race condition with
make -j4 all apidoc
where some parts of the library, tests or programs could be built with the
wrong config.h, resulting in all kinds of (semi-random) errors. Recent
versions of CMake mitigate this by adding a .NOTPARALLEL target to the
generated Makefile, but people would still get errors with older CMake
versions that are still in use (eg in RHEL 5), and with plain make.
An additional issue is that, by failing to use cp -p, the apidoc target was
updating the timestamp on config.h, which seems to cause further build issues.
Let's get back to the previous, safe, situation. The improved apidoc building
will be resurrected in a script in the next commit.
fixes #390
fixes #391
2016-01-12 14:59:39 +01:00
|
|
|
ADD_CUSTOM_TARGET(apidoc
|
|
|
|
COMMAND doxygen doxygen/mbedtls.doxyfile
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
|
2013-09-07 16:52:42 +02:00
|
|
|
|
2014-04-30 16:31:54 +02:00
|
|
|
if(ENABLE_TESTING)
|
2015-07-01 16:59:56 +02:00
|
|
|
enable_testing()
|
|
|
|
|
|
|
|
add_subdirectory(tests)
|
|
|
|
|
|
|
|
# additional convenience targets for Unix only
|
|
|
|
if(UNIX)
|
|
|
|
|
|
|
|
ADD_CUSTOM_TARGET(covtest
|
|
|
|
COMMAND make test
|
|
|
|
COMMAND programs/test/selftest
|
2016-03-08 00:22:10 +01:00
|
|
|
COMMAND tests/compat.sh
|
2015-07-08 22:59:16 +02:00
|
|
|
COMMAND tests/ssl-opt.sh
|
2015-07-01 16:59:56 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
ADD_CUSTOM_TARGET(lcov
|
|
|
|
COMMAND rm -rf Coverage
|
|
|
|
COMMAND lcov --capture --initial --directory library/CMakeFiles/mbedtls.dir -o files.info
|
|
|
|
COMMAND lcov --capture --directory library/CMakeFiles/mbedtls.dir -o tests.info
|
|
|
|
COMMAND lcov --add-tracefile files.info --add-tracefile tests.info -o all.info
|
|
|
|
COMMAND lcov --remove all.info -o final.info '*.h'
|
|
|
|
COMMAND gendesc tests/Descriptions.txt -o descriptions
|
|
|
|
COMMAND genhtml --title "mbed TLS" --description-file descriptions --keep-descriptions --legend --no-branch-coverage -o Coverage final.info
|
|
|
|
COMMAND rm -f files.info tests.info all.info final.info descriptions
|
|
|
|
)
|
|
|
|
|
|
|
|
ADD_CUSTOM_TARGET(memcheck
|
|
|
|
COMMAND sed -i.bak s+/usr/bin/valgrind+`which valgrind`+ DartConfiguration.tcl
|
|
|
|
COMMAND ctest -O memcheck.log -D ExperimentalMemCheck
|
|
|
|
COMMAND tail -n1 memcheck.log | grep 'Memory checking results:' > /dev/null
|
|
|
|
COMMAND rm -f memcheck.log
|
|
|
|
COMMAND mv DartConfiguration.tcl.bak DartConfiguration.tcl
|
|
|
|
)
|
|
|
|
endif(UNIX)
|
2014-04-30 16:31:54 +02:00
|
|
|
endif()
|