summarylogtreecommitdiffstats
path: root/ldc2.conf
blob: e8cf1ebafe933b94f4cfd82aa4bc8952e1ac64a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// See comments in driver/config.d in ldc source tree for grammar description of
// this config file.

// The default group is required
default:
{
    // default switches injected before all explicit command-line switches
    switches = [
        "-I/usr/include/dlang/ldc/ldc",
        "-I/usr/include/dlang/ldc",
        "-defaultlib=phobos2-ldc,druntime-ldc",
        "-debuglib=phobos2-ldc-debug,druntime-ldc-debug"
    ];
    // default switches appended after all explicit command-line switches
    post-switches = [
        "-L-L/usr/lib",
    ];
};