Page 2 of 2
Re: ___udivdi3
Posted: Tue Feb 21, 2017 6:52 pm
by kzinti
Link with libgcc.a. Someone explained it above.
You can find where it is with GCC:
Code: Select all
gcc $(CFLAGS) -print-file-name=libgcc.a
Re: ___udivdi3
Posted: Tue Feb 21, 2017 9:09 pm
by zesterer
kzinti wrote:Link with libgcc.a. Someone explained it above.
You can find where it is with GCC:
Code: Select all
gcc $(CFLAGS) -print-file-name=libgcc.a
I try linking against libgcc with "-lgcc" and I get the following:
Code: Select all
/usr/local/lib/gcc/i686-elf/6.3.0/../../../../i686-elf/bin/ld: cannot find crt0.o: No such file or directory
/usr/local/lib/gcc/i686-elf/6.3.0/../../../../i686-elf/bin/ld: cannot find -lstdc++
/usr/local/lib/gcc/i686-elf/6.3.0/../../../../i686-elf/bin/ld: cannot find -lm
/usr/local/lib/gcc/i686-elf/6.3.0/../../../../i686-elf/bin/ld: cannot find -lc
What am I doing wrong? Why is it trying to pull in stdc++? I've passed "-nostdlib" and "-ffreestanding", so I don't see why this is happening.
EDIT: I've fixed it. Linker arguments were backwards.