mirror of
https://libwebsockets.org/repo/libwebsockets
synced 2024-11-21 08:37:52 +00:00
85 lines
3.9 KiB
CMake
85 lines
3.9 KiB
CMake
#
|
|
# CMake Toolchain file for crosscompiling on Mediatek Linkit 7967
|
|
#
|
|
# This can be used like this (with Linkit sdk unpacked to /opt/linkit)
|
|
#
|
|
# cd build/
|
|
# cmake .. -DCMAKE_INSTALL_PREFIX:PATH=/opt/linkit/cross-root \
|
|
# -DCMAKE_TOOLCHAIN_FILE=../contrib/cross-linkit.cmake \
|
|
# -DLWS_PLAT_FREERTOS=1 \
|
|
# -DLWS_WITH_ZLIB=0 \
|
|
# -DLWS_WITHOUT_EXTENSIONS=1 \
|
|
# -DLWS_WITH_ZIP_FOPS=0 \
|
|
# -DLWS_WITH_HTTP_STREAM_COMPRESSION=0 \
|
|
# -DLWS_WITH_MBEDTLS=1 \
|
|
# -DLWS_WITH_FILE_OPS=0
|
|
#
|
|
|
|
# if your sdk lives somewhere else, this is the only place that should need changing
|
|
set(CROSS_BASE /opt/linkit/sdk)
|
|
set(CROSS_PATH ${CROSS_BASE}/tools/gcc/gcc-arm-none-eabi)
|
|
|
|
#
|
|
# Target operating system name.
|
|
set(CMAKE_SYSTEM_NAME Generic)
|
|
|
|
# Name of C compiler.
|
|
set(CMAKE_C_COMPILER "${CROSS_PATH}/bin/arm-none-eabi-gcc")
|
|
set(CMAKE_CXX_COMPILER "${CROSS_PATH}/bin/arm-none-eabi-g++")
|
|
|
|
#
|
|
# cmake believes we should link a NOP test program OK, but since we're
|
|
# baremetal, that's not true in our case. It tries to build this test
|
|
# with the cross compiler, but with no args on it, and it fails.
|
|
# So disable this test for this toolchain (we'll find out soon enough
|
|
# if we actually can't compile anything)
|
|
|
|
set(CMAKE_C_COMPILER_WORKS 1)
|
|
set(CMAKE_CXX_COMPILER_WORKS 1)
|
|
|
|
#
|
|
# similarly we're building a .a like this, we can't actually build
|
|
# complete test programs to probe api availability... so force some
|
|
# key ones
|
|
|
|
set(LWS_HAVE_mbedtls_ssl_conf_alpn_protocols 1)
|
|
set(LWS_HAVE_mbedtls_ssl_conf_alpn_protocols 1)
|
|
set(LWS_HAVE_mbedtls_ssl_get_alpn_protocol 1)
|
|
set(LWS_HAVE_mbedtls_ssl_conf_sni 1)
|
|
set(LWS_HAVE_mbedtls_ssl_set_hs_ca_chain 1)
|
|
set(LWS_HAVE_mbedtls_ssl_set_hs_own_cert 1)
|
|
set(LWS_HAVE_mbedtls_ssl_set_hs_authmode 1)
|
|
set(LWS_HAVE_mbedtls_net_init 1)
|
|
set(LWS_HAVE_mbedtls_md_setup 1) # not on xenial 2.2
|
|
set(LWS_HAVE_mbedtls_rsa_complete 1) # not on xenial 2.2
|
|
set(LWS_HAVE_mbedtls_internal_aes_encrypt 1)
|
|
#
|
|
# Different build system distros set release optimization level to different
|
|
# things according to their local policy, eg, Fedora is -O2 and Ubuntu is -O3
|
|
# here. Actually the build system's local policy is completely unrelated to
|
|
# our desire for cross-build release optimization policy for code built to run
|
|
# on a completely different target than the build system itself.
|
|
#
|
|
# Since this goes last on the compiler commandline we have to override it to a
|
|
# sane value for cross-build here. Notice some gcc versions enable broken
|
|
# optimizations with -O3.
|
|
#
|
|
if (CMAKE_BUILD_TYPE MATCHES RELEASE OR CMAKE_BUILD_TYPE MATCHES Release OR CMAKE_BUILD_TYPE MATCHES release)
|
|
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -O2")
|
|
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O2")
|
|
endif()
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -lnosys -nostartfiles -I${CROSS_BASE}/middleware/third_party/lwip/src/include/lwip -I${CROSS_BASE}/middleware/third_party/lwip/src/include -I${CROSS_BASE}/project/mt7687_hdk/apps/httpd/inc/ -I${CROSS_BASE}/kernel/service/inc/ -I${CROSS_BASE}/driver/chip/inc -I${CROSS_BASE}/driver/chip/mt7687/inc/ -I${CROSS_BASE}/driver/CMSIS/Device/MTK/mt7687/Include/ -I${CROSS_BASE}/driver/CMSIS/Include -I${CROSS_BASE}/middleware/third_party/lwip/ports/include/ -I${CROSS_BASE}/middleware/third_party/lwip/src/include/posix/ -I${CROSS_BASE}/kernel/rtos/FreeRTOS/Source/include/ -I${CROSS_BASE}/middleware/third_party/mbedtls/include/ -I${CROSS_BASE}/kernel/rtos/FreeRTOS/Source/portable/GCC/ARM_CM4F/ -I${CROSS_BASE}/middleware/third_party/sntp/inc/ -DLWS_AMAZON_RTOS=1" CACHE STRING "" FORCE)
|
|
|
|
# Where to look for the target environment. (More paths can be added here)
|
|
set(CMAKE_FIND_ROOT_PATH "${CROSS_PATH}")
|
|
|
|
# Adjust the default behavior of the FIND_XXX() commands:
|
|
# search programs in the host environment only.
|
|
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
|
|
|
|
# Search headers and libraries in the target environment only.
|
|
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
|
|
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
|
|
|