Added the Debug configuration

This configuration causes a stack smash error; however, this configuration does not build in Eclipse
This commit is contained in:
Hayley 2019-07-10 13:01:56 -05:00
parent aa353e9817
commit 8fd933905a

View file

@ -78,6 +78,23 @@ elseif(CMAKE_BUILD_TYPE MATCHES ThumbDV_Debug)
-MP
-MF
)
elseif(CMAKE_BUILD_TYPE MATCHES Debug)
target_compile_options(thumbdv PRIVATE
-O0
-ftree-vectorize
-g3
-ggdb
-g3
-fstack-protector-all
-funwind-tables
-Wall
-c
-fmessage-length=0
-lpthread
-MMD
-MP
-MF
)
endif()