On 11/16/21 10:03 PM, Warner Losh wrote:
I had to add this:
diff --git a/meson.build b/meson.build
index 0a88bff8d2..349e7a988f 100644
--- a/meson.build
+++ b/meson.build
@@ -2880,6 +2880,8 @@ foreach target : target_dirs
endif
if 'CONFIG_BSD_USER' in config_target
base_dir = 'bsd-user'
+ target_inc += include_directories('bsd-user/host/' / config_host['ARCH'])
+ target_inc += include_directories('common-user/host/' /
config_host['ARCH'])
I get an error for adding bsd-user/host/ at this point, because bsd-user/host/arch does
not yet exist. But I can certainly add common-user/host/ now.
r~