File: program

package info (click to toggle)
xd 3.11.0-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 304 kB
  • ctags: 102
  • sloc: cpp: 703; makefile: 139
file content (18 lines) | stat: -rw-r--r-- 253 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

void program(string strip)
{
    string lopt;

    #ifdef PROFILE
        lopt = PROFILE;
    #else
        lopt = strip;
    #endif

    library(0);

    exec(COMPILER, "-o", g_binary,
            "-lxd", libs, "-L.", libpath , lopt);

    exit(0);
}