I want to write all my LD output to a file. I've looked through ld --help but i can't see anything, maybe i missed it.
How can i write all my (error) messages to a file in LD?
Dangamoose
LD error output
RE:LD error output
Under linux:
ld (options) 2>&1 | tee "errors.log"
Under windows:
ld (options) >> "errors.log"
ld (options) 2>&1 | tee "errors.log"
Under windows:
ld (options) >> "errors.log"
RE:LD error output
Ok, that works fine, my errors are going to the log. But, how do i now stop ld from dumping errors to my console?
Thanks in advance.
Dangamoose
Thanks in advance.
Dangamoose