diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2023-01-25 02:16:10 -0500 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-01-26 01:59:24 +0100 |
commit | 248d0c7a784f33c7a682cee038ebcaf33af7cb36 (patch) | |
tree | 65e913788ad56bf5184755b4be20ed39e2b5994c /Makefrag.am | |
parent | b379d5afdf65cce11426ab0349a3778b3fd632f5 (diff) | |
download | gnumach-248d0c7a784f33c7a682cee038ebcaf33af7cb36.tar.gz gnumach-248d0c7a784f33c7a682cee038ebcaf33af7cb36.tar.bz2 gnumach-248d0c7a784f33c7a682cee038ebcaf33af7cb36.zip |
Do not include seg.c when building for x86_64
File was removed in a previous patch for i386.
To avoid future problems, include some common files between i386 and
x86_64 in i386/Makefrag_x86.am. It is also easier to see what is different and
what lacks support for x86_64 (e.g., SMP).
Message-Id: <Y9DXOiP+ClYdj68Z@jupiter.tail36e24.ts.net>
Diffstat (limited to 'Makefrag.am')
-rw-r--r-- | Makefrag.am | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefrag.am b/Makefrag.am index bdf61246..128f7911 100644 --- a/Makefrag.am +++ b/Makefrag.am @@ -603,6 +603,13 @@ endif # Architecture specific parts. # +if HOST_ix86 +include i386/Makefrag_x86.am +endif +if HOST_x86_64 +include i386/Makefrag_x86.am +endif + # ix86. include i386/Makefrag.am |