scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

sysld.scc.h (222B)


      1 /* configure below your system linker command line */
      2 
      3 char *ldcmd[] = {
      4 	"-static",
      5 	"-z","nodefaultlib",
      6 	%NOPIE%
      7 	"-o","%o",
      8 	"-L","%p/lib/scc/%a-%s",
      9 	"%p/lib/scc/%a-%s/crt.o",
     10 	"%c",
     11 	"-lc",
     12 	"-lcrt",
     13         NULL
     14 };