i want the ld linker.exe file and any other file that can help me
i just have gcc & nasm & tasm & jloc & partcopy
i still search for other files but i cant find any of them
so please if any one have them send this files to my mail [email protected] show me any site i can download them from it
thanks
Bola
hint : thank you solar for the last site you send it to me i found alot of good information that help me to build my first micro-kernel but i still want the other prgrams to work on it
BYE
i want the ld linker.exe file and any other file
Re:i want the ld linker.exe file and any other file
ld is a Linux program, so unless you're deving under Linux you won't have it. If you're using Windows (which I assume from the list of tools you gave), then NASM and TASM come with tools to do their own linking or you could use the copy of ld that should have come with Cygwin (presumably that's how you got hold of GCC).
Re:i want the ld linker.exe file and any other file
Please visit the FAQ pages Cygwin and GCC Cross-Compiler.
ld is part of binutils; if you have a working GCC setup, you also have a working ld.
ld is part of binutils; if you have a working GCC setup, you also have a working ld.
Every good solution is obvious once you've found it.
Re:i want the ld linker.exe file and any other file
A windows version of ld comes with DJGPP. I use it for linking my OS, but I don't have binutils.
-Stephen
-Stephen
Re:i want the ld linker.exe file and any other file
DJGPP is actually for DOS, MinGW is for Windows. Cygwin is as well but none of these work particularly well for anything other than Windows Apps.
Re:i want the ld linker.exe file and any other file
DJGPP works fine for compiling my OS.DJGPP is actually for DOS, MinGW is for Windows. Cygwin is as well but none of these work particularly well for anything other than Windows Apps.
-Stephen
- Colonel Kernel
- Member
- Posts: 1437
- Joined: Tue Oct 17, 2006 6:06 pm
- Location: Vancouver, BC, Canada
- Contact:
Re:i want the ld linker.exe file and any other file
I was able to cross-compile gcc and binutils on Cygwin, and it works fine...AR wrote:Cygwin is as well but none of these work particularly well for anything other than Windows Apps.
Top three reasons why my OS project died:
- Too much overtime at work
- Got married
- My brain got stuck in an infinite loop while trying to design the memory manager
Re:i want the ld linker.exe file and any other file
I was referring to the included compiler, obviously a cross compiler isn't included (That is my current setup), or obviously, if you intend to use PE as your executable format of choice (I personally don't like the "thunks" linking concept but to each their own)