diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2023-01-30 02:22:14 -0500 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-01-30 21:02:49 +0100 |
commit | 40846f7c5fc0ff47650eb254b961327518ab44f3 (patch) | |
tree | 4379ab016ae82bc267c37b18db2a7a4a251964cc | |
parent | fc0d49a3eda8b89497d1f2908b29b5476019a818 (diff) | |
download | gnumach-40846f7c5fc0ff47650eb254b961327518ab44f3.tar.gz gnumach-40846f7c5fc0ff47650eb254b961327518ab44f3.tar.bz2 gnumach-40846f7c5fc0ff47650eb254b961327518ab44f3.zip |
Include i386asm.h using i386/i386/i386.asm.h
If we 1) build for x86_64 and 2) build in a separate directory, we will not have
-Ii386 (-Ix86_64 instead) hence this file won't be found since it is autogenerated.
Message-Id: <Y9dwJjhWt8s+P+b8@jupiter.tail36e24.ts.net>
-rw-r--r-- | i386/i386at/int_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i386/i386at/int_init.c b/i386/i386at/int_init.c index 964ce1bb..1d264004 100644 --- a/i386/i386at/int_init.c +++ b/i386/i386at/int_init.c @@ -24,7 +24,7 @@ #include <i386at/idt.h> #include <i386at/int_init.h> #include <i386/mp_desc.h> -#include <i386/i386asm.h> +#include <i386/i386/i386asm.h> /* defined in locore.S */ extern vm_offset_t int_entry_table[]; |