Skip to content

Commit

Permalink
Update cortex_m_generic_makefile.inc
Browse files Browse the repository at this point in the history
remove unnecessary single quote
  • Loading branch information
chasezheng authored Jan 14, 2025
1 parent e824228 commit 0d4e200
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,9 @@ PLATFORM_FLAGS = \
-DCPU_$(CORE)=1

ifeq ($(SIGNED_CHAR), false)
PLATFORM_FLAGS += ' -funsigned-char'
PLATFORM_FLAGS += -funsigned-char
else
PLATFORM_FLAGS += ' -fsigned-char'
PLATFORM_FLAGS += -fsigned-char
endif

# For DWT/PMU counters. Header file name is depending on target architecture.
Expand Down

0 comments on commit 0d4e200

Please sign in to comment.