view ldc.conf.in @ 1515:391fdb36f2aa

Be a little less overzealous with arrays of void-initialized typedefs; initialize `new VoidTD[][](2)` and `new VoidTD[][][](2, 3)` (but not `new VoidTD[2][3]`, which is a dynamic array of static arrays of void-initialized typedefs).
author Frits van Bommel <fvbommel wxs.nl>
date Wed, 24 Jun 2009 18:01:02 +0200
parents 193ab3969920
children e16ea850ff81
line wrap: on
line source

// This configuration file uses libconfig.
// See http://www.hyperrealm.com/libconfig/ for syntax details.

// Special macros:
// %%ldcbinarydir%%
//  - is replaced with the path to the directory holding the ldc executable

// 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@RUNTIME_DIR@",
        "-I@RUNTIME_DIR@/lib/common",
        "-L-L%%ldcbinarypath%%/../lib",
        "-d-version=Tango",
        "-defaultlib=@RUNTIME_AIO@",
        "-debuglib=@RUNTIME_AIO@"
    ];
};