Advertisement
konalisp

output

Nov 16th, 2014
316
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. nasm -f elf64 x86HAL/start.asm -o start.o
  2. nasm -f elf64 x86HAL/crti.asm -o crti.o
  3. nasm -f elf64 x86HAL/crtn.asm -o crtn.o
  4. clang++ Kernel/main.cxx -target x86_64-elf -m64 -std=gnu++11 -Wall -Wextra -ffreestanding -nostdlib -mcmodel=kernel -mno-red-zone -I Include -c -o kernel.o
  5. ld -z max-page-size=0x1000 -nodefaultlibs -m elf_x86_64 -T link.ld -o kernel.bin crti.o /usr/bin/../lib/gcc/x86_64-linux-gnu/4.8/crtbegin.o start.o kernel.o /usr/bin/../lib/gcc/x86_64-linux-gnu/4.8/crtend.o crtn.o
  6. /usr/bin/../lib/gcc/x86_64-linux-gnu/4.8/crtbegin.o: In function `deregister_tm_clones':
  7. crtstuff.c:(.text+0x1): relocation truncated to fit: R_X86_64_32 against symbol `__TMC_END__' defined in .fini_array section in kernel.bin
  8. crtstuff.c:(.text+0x23): relocation truncated to fit: R_X86_64_32 against `.tm_clone_table'
  9. /usr/bin/../lib/gcc/x86_64-linux-gnu/4.8/crtbegin.o: In function `register_tm_clones':
  10. crtstuff.c:(.text+0x31): relocation truncated to fit: R_X86_64_32 against symbol `__TMC_END__' defined in .fini_array section in kernel.bin
  11. crtstuff.c:(.text+0x63): relocation truncated to fit: R_X86_64_32 against `.tm_clone_table'
  12. /usr/bin/../lib/gcc/x86_64-linux-gnu/4.8/crtbegin.o: In function `frame_dummy':
  13. crtstuff.c:(.text+0xa6): relocation truncated to fit: R_X86_64_32 against `.jcr'
  14. make: *** [kernel] Error 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement