Skip to content

Commit

Permalink
Fix compile error with gcc versions >9.2.1 (#2223)
Browse files Browse the repository at this point in the history
  • Loading branch information
NotherNgineer committed Aug 15, 2024
1 parent 750d592 commit c992780
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions firmware/standalone/pacman/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ include(CheckCXXCompilerFlag)
project(pacman_app)

# Compiler options here.
set(USE_OPT "-Os -g --specs=nano.specs")
set(USE_OPT "-Os -g --specs=nano.specs --specs=nosys.specs")

# C specific options here (added to USE_OPT).
set(USE_COPT "-std=gnu99")
Expand Down Expand Up @@ -120,7 +120,7 @@ set(TCPPSRC)
# List ASM source files here
set(ASMSRC)

set(INCDIR
set(INCDIR
${CMAKE_CURRENT_SOURCE_DIR}
${COMMON}
${COMMON}/../application
Expand Down

0 comments on commit c992780

Please sign in to comment.