Readme.md (608B)
1 2# Example of how to use a linkerfile 3 4A linkerfile allows storing all the object files to be linked in a 5file which is passed to the linker instead of a list of filenames on 6the command line. This may be useful if your project has filenames 7that use up more length than will fit on the command line for Windows 8(8191 chars max). 9 10The typical extension for the linkerfile is ".lk". 11 12It is passed to sdldgb through lcc using `-Wl-f<pathtolinkerfile>` 13If calling sdldgb directly, use `-f<pathtolinkerfile>` 14 15The Makefile is configured to store all the compiled ".o" object files 16into `obj/linkerfile.lk`. 17 18