From 3a131cfa0afc601d6d61c741dbbbfc87fb64eec1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alan=20Dragomirecky=CC=81?= Date: Fri, 9 Jul 2021 23:07:45 +0200 Subject: [PATCH] Remove mentions of the -m32 flag (commented code) --- tests/unit/CMakeLists.txt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/unit/CMakeLists.txt b/tests/unit/CMakeLists.txt index d755b48..cd5d5be 100644 --- a/tests/unit/CMakeLists.txt +++ b/tests/unit/CMakeLists.txt @@ -1,10 +1,6 @@ # first, let's create a symbolic target for all tests add_custom_target(tests) -# this had a reason on the Buddy FW, but on the AVR we cannot get close to having 16bit ints and -# pointers so the unit tests may be compiled 64bit afterall set(CMAKE_C_FLAGS -m32) -# set(CMAKE_CXX_FLAGS -m32) - # include catch_discover_tests function from Catch2 include(${Catch2_SOURCE_DIR}/contrib/Catch.cmake)