blob: 8fe82063ca6206455501deb72560872ebbae9d9c (
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=lphobos",
"-debuglib=lphobos-debug"
];
};
|