mirror of
https://github.com/hathach/tinyusb.git
synced 2026-05-07 14:03:46 +00:00
14 lines
323 B
CMake
14 lines
323 B
CMake
if (TOOLCHAIN STREQUAL "gcc")
|
|
set(TOOLCHAIN_COMMON_FLAGS
|
|
-fvar-tracking
|
|
-fvar-tracking-assignments
|
|
)
|
|
|
|
elseif (TOOLCHAIN STREQUAL "clang")
|
|
message(FATAL_ERROR "Clang is not supported for this target")
|
|
|
|
elseif (TOOLCHAIN STREQUAL "iar")
|
|
message(FATAL_ERROR "IAR is not supported for this target")
|
|
|
|
endif ()
|