view ldc.conf.in @ 1131:f2f13f111e2e

Workaround for LLVM PR 3861 (http://llvm.org/PR3861). (LLVM abort()s in codegen if the second integer in a return value is <= i8 on x86/x86-64) This was breaking native compilation of Tango's TempFile module on x86-64.
author Frits van Bommel <fvbommel wxs.nl>
date Mon, 23 Mar 2009 01:01:55 +0100
parents 2cd6199488f6
children b6e819244062
line wrap: on
line source

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