Changeset 544b4bf in mainline
- Timestamp:
- 2005-09-03T13:11:54Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2f08a55d
- Parents:
- 51022e9b
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/amd64/Makefile.inc
r51022e9b r544b4bf 7 7 LD=$(AMD64_BINUTILS_DIR)/$(AMD64_TARGET)-ld 8 8 9 #ASFLAGS=--64 9 10 10 11 11 DEFS=-DARCH=$(ARCH) 12 13 ifdef SMP 14 DEFS+=-D$(SMP) 15 endif 16 17 ifdef HT 18 DEFS+=-D$(HT) 19 endif 20 21 12 22 CPPFLAGS=$(DEFS) -nostdinc -I../include 13 23 CFLAGS=$(CPPFLAGS) -nostdlib -fno-builtin -fno-unwind-tables -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -march=opteron -m64 -mcmodel=kernel -mno-red-zone -
arch/amd64/src/amd64.c
r51022e9b r544b4bf 43 43 #include <print.h> 44 44 #include <arch/cpuid.h> 45 #include <arch/acpi/acpi.h> 45 46 46 47 void arch_pre_mm_init(void) -
include/mm/heap.h
r51022e9b r544b4bf 38 38 struct chunk *prev; 39 39 __u32 size; 40 __ u8data[0];40 __native data[0]; 41 41 }; 42 42 -
src/build.amd64
r51022e9b r544b4bf 16 16 done 17 17 18 for a in atomic.h ega.h i8042.h i8259.h i8254.h interrupt.h bios mm/memory_init.h boot/memmap.h boot/memmapasm.h ; do18 for a in atomic.h ega.h i8042.h i8259.h i8254.h interrupt.h bios mm/memory_init.h boot/memmap.h boot/memmapasm.h smp acpi; do 19 19 if [ \! -e amd64/include/$a ]; then 20 20 echo ln -sf `pwd`/ia32/include/$a amd64/include/$a
Note:
See TracChangeset
for help on using the changeset viewer.