Problem with compiling FritzOS

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
Cmaranec
Member
Member
Posts: 45
Joined: Sat Oct 21, 2006 1:07 pm
Location: Czech Republic

Problem with compiling FritzOS

Post by Cmaranec »

Hello, i tried to compile kernel of FritzOS with NASM and DJGPP. Compiling throws only warnings (comparing between signed and unsigned,...), but linking throws this:

c:/djgpp/bin/ld.exe: warning: cannot find entry symbol start; defaulting to 0010
0000
kernelasm.o(.text+0x43): relocation truncated to fit: 16 .text
k32.o(.eh_frame+0x11):k32.cpp: undefined reference to `___gxx_personality_v0'

Can you help me?
Sorry for my bad English...
User avatar
bluecode
Member
Member
Posts: 202
Joined: Wed Nov 17, 2004 12:00 am
Location: Germany
Contact:

Post by bluecode »

I think it should be sufficient to turn of RTTI and Exceptions via g++ commandline options -fno-rtti and -fno-exceptions.
Post Reply