summarylogtreecommitdiffstats
path: root/ldc2.conf
blob: 5b5cff10d4cd659689321b746766bfd7c72d6e95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// This configuration file uses libconfig.
// See http://www.hyperrealm.com/libconfig/ for syntax details.

// The default group is required
default:
{
    // 'switches' holds array of string that are appends to the command line
    // arguments before they are parsed.
    switches = [
        "-I/usr/include/dlang/ldc/ldc",
        "-I/usr/include/dlang/ldc",
        "-L-L/usr/lib",
        "-L-L/usr/lib32",
        "-L--no-warn-search-mismatch",
        "-defaultlib=lphobos2,ldruntime",
        "-debuglib=lphobos2-debug,ldruntime-debug"
    ];
};