MSP430 toolchain files
authorgkostka <kostka.grzegorz@gmail.com>
Sun, 22 Jun 2014 16:05:28 +0000 (16:05 +0000)
committergkostka <kostka.grzegorz@gmail.com>
Sun, 22 Jun 2014 16:05:28 +0000 (16:05 +0000)
toolchain/common/msp430-gcc.cmake [new file with mode: 0644]
toolchain/msp430.cmake [new file with mode: 0644]

diff --git a/toolchain/common/msp430-gcc.cmake b/toolchain/common/msp430-gcc.cmake
new file mode 100644 (file)
index 0000000..6a739a7
--- /dev/null
@@ -0,0 +1,22 @@
+# Toolchain settings
+set(CMAKE_C_COMPILER    msp430-gcc)
+set(CMAKE_CXX_COMPILER  msp430-g++)
+set(AS                  msp430--gcc)
+set(AR                  msp430-ar)
+set(OBJCOPY             msp430-objcopy)
+set(OBJDUMP             msp430-objdump)
+set(SIZE                msp430-size)
+
+set(CMAKE_C_FLAGS   "${MCPU_FLAGS} -Wall -std=gnu99 -fdata-sections -ffunction-sections" CACHE INTERNAL "c compiler flags")
+set(CMAKE_CXX_FLAGS "${MCPU_FLAGS} -Wall -fdata-sections -ffunction-sections" CACHE INTERNAL "cxx compiler flags")
+set(CMAKE_ASM_FLAGS "${MCPU_FLAGS} -x assembler-with-cpp" CACHE INTERNAL "asm compiler flags")
+set(CMAKE_EXE_LINKER_FLAGS "${MCPU_FLAGS} -nostartfiles -Wl,--gc-sections" CACHE INTERNAL "exe link flags")
+
+
+SET(CMAKE_C_FLAGS_DEBUG "-O0 -g -ggdb3" CACHE INTERNAL "c debug compiler flags")
+SET(CMAKE_CXX_FLAGS_DEBUG "-O0 -g -ggdb3" CACHE INTERNAL "cxx debug compiler flags")
+SET(CMAKE_ASM_FLAGS_DEBUG "-g -ggdb3" CACHE INTERNAL "asm debug compiler flags")
+
+SET(CMAKE_C_FLAGS_RELEASE "-Os -g -ggdb3" CACHE INTERNAL "c release compiler flags")
+SET(CMAKE_CXX_FLAGS_RELEASE "-Os -g -ggdb3" CACHE INTERNAL "cxx release compiler flags")
+SET(CMAKE_ASM_FLAGS_RELEASE "" CACHE INTERNAL "asm release compiler flags")
\ No newline at end of file
diff --git a/toolchain/msp430.cmake b/toolchain/msp430.cmake
new file mode 100644 (file)
index 0000000..7736c29
--- /dev/null
@@ -0,0 +1,7 @@
+# Name of the target
+set(CMAKE_SYSTEM_NAME msp430)
+set(CMAKE_SYSTEM_PROCESSOR msp430g2210)
+
+set(MCPU_FLAGS "-mmcu=msp430g2210")
+
+include(${CMAKE_CURRENT_LIST_DIR}/common/msp430-gcc.cmake)
\ No newline at end of file