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 /x86_64 | |
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 'x86_64')
-rw-r--r-- | x86_64/Makefrag.am | 68 |
1 files changed, 1 insertions, 67 deletions
diff --git a/x86_64/Makefrag.am b/x86_64/Makefrag.am index 71491c2a..03b1eca7 100644 --- a/x86_64/Makefrag.am +++ b/x86_64/Makefrag.am @@ -86,78 +86,12 @@ endif # libkernel_a_SOURCES += \ - i386/i386/ast.h \ - i386/i386/ast_check.c \ - i386/i386/ast_types.h \ - i386/i386/cpu.h \ - i386/i386/cpu_number.h \ x86_64/cswitch.S \ x86_64/copy_user.c \ - i386/i386/db_disasm.c \ - i386/i386/db_interface.c \ - i386/i386/db_interface.h \ - i386/i386/db_machdep.h \ - i386/i386/db_trace.c \ - i386/i386/db_trace.h \ - i386/i386/debug.h \ - i386/i386/debug_i386.c \ x86_64/debug_trace.S \ - i386/i386/eflags.h \ - i386/i386/fpu.c \ - i386/i386/fpu.h \ - i386/i386/gdt.c \ - i386/i386/gdt.h \ - i386/i386/idt-gen.h \ - i386/i386/idt.c \ x86_64/idt_inittab.S \ - i386/i386/io_perm.c \ - i386/i386/io_perm.h \ - i386/i386/ipl.h \ - i386/i386/ktss.c \ - i386/i386/ktss.h \ - i386/i386/kttd_interface.c \ - i386/i386/kttd_machdep.h \ - i386/i386/ldt.c \ - i386/i386/ldt.h \ - i386/i386/lock.h \ x86_64/locore.S \ - i386/i386/locore.h \ - i386/i386/loose_ends.c \ - i386/i386/loose_ends.h \ - i386/i386/mach_param.h \ - i386/i386/machine_routines.h \ - i386/i386/machine_task.c \ - i386/i386/machspl.h \ - i386/i386/model_dep.h \ - i386/i386/mp_desc.c \ - i386/i386/mp_desc.h \ - i386/i386/pcb.c \ - i386/i386/pcb.h \ - i386/i386/phys.c \ - i386/i386/pio.h \ - i386/i386/pmap.h \ - i386/i386/proc_reg.h \ - i386/i386/sched_param.h \ - i386/i386/seg.c \ - i386/i386/seg.h \ - i386/i386/setjmp.h \ - x86_64/spl.S \ - i386/i386/spl.h \ - i386/i386/strings.c \ - i386/i386/task.h \ - i386/i386/thread.h \ - i386/i386/time_stamp.h \ - i386/i386/trap.c \ - i386/i386/trap.h \ - i386/i386/tss.h \ - i386/i386/user_ldt.c \ - i386/i386/user_ldt.h \ - i386/i386/vm_param.h \ - i386/i386/xpr.h \ - i386/intel/pmap.c \ - i386/intel/pmap.h \ - i386/intel/read_fault.c \ - i386/intel/read_fault.h + x86_64/spl.S if PLATFORM_at libkernel_a_SOURCES += \ |