From b81d096a5a5428cece300c4d35edd67a3dda27d4 Mon Sep 17 00:00:00 2001 From: mbanth Date: Wed, 26 May 2021 12:17:38 +0100 Subject: [PATCH] Add XS1-specific XUD symbol to allow building with the current develop branch of lib_xud --- tests/xua_unit_tests/wscript | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tests/xua_unit_tests/wscript b/tests/xua_unit_tests/wscript index e5cace3b..0f162c19 100644 --- a/tests/xua_unit_tests/wscript +++ b/tests/xua_unit_tests/wscript @@ -218,7 +218,14 @@ def build(bld): '../../lib_xua/src/hid', '../../../lib_xud/lib_xud/src/user/class'] - makefile_opts['XCC_FLAGS'] = ['-O2', '-g', '-Wall', '-DUNITY_SUPPORT_64', '-DUNITY_INCLUDE_DOUBLE', '-DXUD_CORE_CLOCK=600'] + makefile_opts['XCC_FLAGS'] = ['-O2', + '-g', + '-Wall', + '-DUNITY_SUPPORT_64', + '-DUNITY_INCLUDE_DOUBLE', + '-DXUD_CORE_CLOCK=600', + '-DXUD_SERIES_SUPPORT=4'] + makefile_opts['APP_NAME'] = [bld.variant] makefile_opts['USED_MODULES'] = depends_on makefile_opts['XCOMMON_MAKEFILE'] = ['Makefile.common']