Skip to content

Commit

Permalink
fix num 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Akashem06 committed Sep 30, 2024
1 parent df981d4 commit b035ca4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scons/build.scons
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ for entry in PROJ_DIR.glob('*') + SMOKE_DIR.glob('*'):
lib_deps = get_lib_deps(entry)
# SCons automagically handles object creation and linking

if PLATFORM == 'x86' and not config['arm_only']:
if (PLATFORM == 'x86' and not config['arm_only']) or (PLATFORM == 'arm'):
target = env.Program(
target=BIN_DIR.File(entry.path),
source=srcs,
Expand Down

0 comments on commit b035ca4

Please sign in to comment.