From 6bb20c0386936b57a707966cd484d6e951cb47ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ciro=20Santilli=20=E5=85=AD=E5=9B=9B=E4=BA=8B=E4=BB=B6=20?= =?UTF-8?q?=E6=B3=95=E8=BD=AE=E5=8A=9F?= Date: Wed, 1 Apr 2020 01:00:00 +0000 Subject: [PATCH] fix ./build-baremetal, default freestanding was wrongly set to True --- path_properties.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/path_properties.py b/path_properties.py index da52bf6..5521f88 100644 --- a/path_properties.py +++ b/path_properties.py @@ -50,7 +50,7 @@ class PathProperties: 'extra_objs_disable_baremetal_bootloader': False, # We should get rid of this if we ever properly implement dependency graphs. 'extra_objs_lkmc_common': False, - 'freestanding': True, + 'freestanding': False, 'gem5_unimplemented_instruction': False, # Fully, or partially unimplemented. 'gem5_unimplemented_syscall': False,