Re: [CMake] Using CMake with TI armcl and armar

2019-11-11 Thread Eric Doenges
Am 09.11.19 um 00:15 schrieb Samyukta Ramnath: I want to add a CC1352P1_LAUNCHXL_TIRTOS.cmd  file, which has been added in the CCS linker command, but I am unable to include It in my linker command. I tried the following things : set(LINKER_SCRIPT "${LWIP_DIR}/CC1352P1_LAUNCHXL_TIRTOS.cmd")

Re: [CMake] Using CMake with TI armcl and armar

2019-11-08 Thread Samyukta Ramnath
compiler ABI info” Thanks for your help! Warm regards, Samyukta From: CMake on behalf of Eric Doenges Organization: MVTec Software GmbH Date: Friday, November 8, 2019 at 12:23 AM To: "cmake@cmake.org" Subject: Re: [CMake] Using CMake with TI armcl and armar Am 07.11.19 u

Re: [CMake] Using CMake with TI armcl and armar

2019-11-07 Thread Eric Doenges
Am 07.11.19 um 18:01 schrieb samyuktar: SET(CMAKE_C_LINK_EXECUTABLE "${CMAKE_C_COMPILER} ${CMAKE_C_FLAGS} --c_file=../main.c -z --map_file=${TARGET_NAME}.map --output_file=${TARGET_NAME} ${PLATFORM_CONFIG_L_FLAGS} ${CMD_SRCS} ${LIB} --include_path ${LWIP_INCLUDE_DIR} --verbose " CACHE STRING

[CMake] Using CMake with TI armcl and armar

2019-11-07 Thread samyuktar
Hi, I want to include some open-source stacks in my code for the CC1352P1, so I'm trying to use cmake with armcl compiler and armar archiver. Here is my code: cmake_minimum_required(VERSION 3.10) set (CMAKE_CONFIGURATION_TYPES "Debug;Release") project(lwIP) # Example lwIP application