Advertisement
konalisp

Untitled

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