Max
Max
It is possible (and recommended) to use `RelWithDebInfo` build type to achieve desired result. See: https://cmake.org/cmake/help/v3.0/variable/CMAKE_BUILD_TYPE.html
Nix cross-compile info: https://nixos.org/wiki/CrossCompiling
@rasendubi Not really - scope is somewhat large. It includes: - changing ach-level assembly, so that every platform will supply own list of interrupts (vendor-specific). [Draft for ke02](https://github.com/forGGe/theCore/commit/ecc2a56cb28b9c5bfe16f502fd5071bfd6c8d1b9) illustrates it....
Related to the #227
`install()` has problems with exporting sources, instead following snippet can be used: ```cmake macro(theCore_export_target) cmake_parse_arguments( EXPORT "INTERFACE" "TARGET" "" ${ARGN} ) set(CORE_EXPORT_INC_DIR ${CORE_BIN_DIR}/export/inc/) set(CORE_EXPORT_SRC_DIR ${CORE_BIN_DIR}/export/src/) file(MAKE_DIRECTORY ${CORE_EXPORT_INC_DIR} ${CORE_EXPORT_SRC_DIR}) # TODO:...
Working branch for this issue : https://github.com/forGGe/theCore/tree/g230_kinetis_ke02_exp_support
Hi @iia , Currently we have the g230_kinetis_ke02_exp_support branch that pretty outdated and should be refreshed. If you would like to contribute to this issue, I can guide you with...
Hi @iia, I really appreciate your interest in contributing! Below is an overview you requested. ### Overview theCore tries to provide a framework that consistent enough to make _portable_ applications...
I will take an action of refreshing the `g230_kinetis_ke02_exp_support` branch and will send you more instructions about platform creation soon. Let me know what you think about it.
Just for reference: The OpenSDA support, included by default in the KE02 MCU makes debugging really painful. See also: https://www.eevblog.com/forum/microcontrollers/freescale-opensda-linux/ Right now, I'm debugging my fresh, new KE02 dev board...