mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
19 lines
572 B
Text
19 lines
572 B
Text
// 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",
|
|
"-L--no-warn-search-mismatch",
|
|
"-defaultlib=phobos2-ldc,druntime-ldc",
|
|
"-link-defaultlib-shared"
|
|
];
|
|
// default switches appended after all explicit command-line switches
|
|
post-switches = [
|
|
"-L-L/usr/lib"
|
|
];
|
|
};
|