Page 1 of 1
i want the ld linker.exe file and any other file
Posted: Sat Oct 22, 2005 2:47 pm
by new_user
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
Re:i want the ld linker.exe file and any other file
Posted: Sat Oct 22, 2005 2:55 pm
by Kemp
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
Posted: Sun Oct 23, 2005 2:54 am
by Solar
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.
Re:i want the ld linker.exe file and any other file
Posted: Sun Oct 23, 2005 4:07 am
by srg_13
A windows version of ld comes with DJGPP. I use it for linking my OS, but I don't have binutils.
-Stephen
Re:i want the ld linker.exe file and any other file
Posted: Sun Oct 23, 2005 4:41 am
by AR
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
Posted: Sun Oct 23, 2005 4:53 am
by srg_13
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.
DJGPP works fine for compiling my OS.
-Stephen
Re:i want the ld linker.exe file and any other file
Posted: Sun Oct 23, 2005 10:17 am
by Colonel Kernel
AR wrote:Cygwin is as well but none of these work particularly well for anything other than Windows Apps.
I was able to cross-compile gcc and binutils on Cygwin, and it works fine...
Re:i want the ld linker.exe file and any other file
Posted: Sun Oct 23, 2005 6:42 pm
by AR
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)