Skip to content

Commit

Permalink
Fix build error in test cases on AVR
Browse files Browse the repository at this point in the history
  • Loading branch information
PetteriAimonen committed Feb 1, 2020
1 parent 2e58cf2 commit 982655a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/site_scons/platforms/avr/avr.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ def set_avr_platform(env):
env.Append(CFLAGS = "-mmcu=atmega1284 -Dmain=app_main -Os")
env.Append(CXXFLAGS = "-mmcu=atmega1284 -Dmain=app_main -Os -Wno-type-limits")
env.Append(CPPDEFINES = {'PB_CONVERT_DOUBLE_FLOAT': 1, 'UNITTESTS_SHORT_MSGS': 1,
'__ASSERT_USE_STDERR': 1, 'FUZZTEST_BUFSIZE': 2048})
'__ASSERT_USE_STDERR': 1, 'MAX_ALLOC_BYTES': 32768,
'FUZZTEST_BUFSIZE': 2048})
env.Append(LINKFLAGS = "-mmcu=atmega1284")
env.Append(LINKFLAGS = "-Wl,-Map,build/avr.map")

Expand Down

0 comments on commit 982655a

Please sign in to comment.