Skip to content
Snippets Groups Projects
Commit 05a24871 authored by Paolo Bonzini's avatar Paolo Bonzini
Browse files

user: move common-user includes to a subdirectory of {bsd,linux}-user/


Avoid polluting the compilation of common-user/ with local include files;
making an include file available to common-user/ should be a deliberate
decision in order to keep a clear interface that can be used by both
bsd-user/ and linux-user/.

Reviewed-by: default avatarRichard Henderson <richard.henderson@linaro.org>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent a3a576b0
No related branches found
No related tags found
Loading
Showing
with 3 additions and 3 deletions
File moved
......@@ -4,7 +4,7 @@ endif
bsd_user_ss = ss.source_set()
common_user_inc += include_directories('.')
common_user_inc += include_directories('include')
bsd_user_ss.add(files(
'bsdload.c',
......
File moved
......@@ -4,8 +4,8 @@ endif
linux_user_ss = ss.source_set()
common_user_inc += include_directories('host/' / host_arch)
common_user_inc += include_directories('.')
common_user_inc += include_directories('include/host/' / host_arch)
common_user_inc += include_directories('include')
linux_user_ss.add(files(
'elfload.c',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment