annotate ldc2.conf.in @ 1528:15f1707721fa

Updated default ldc2 configuration file.
author Robert Clipsham <robert@octarineparrot.com>
date Thu, 09 Jul 2009 21:13:19 +0100
parents 8403fec8c34c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1129
8403fec8c34c Add dmd-style configuration file for rebuild usage. See #236 and thanks to ccuter for the patch!
Christian Kamm <kamm incasoftware de>
parents: 1000
diff changeset
1 // This configuration file uses libconfig.
8403fec8c34c Add dmd-style configuration file for rebuild usage. See #236 and thanks to ccuter for the patch!
Christian Kamm <kamm incasoftware de>
parents: 1000
diff changeset
2 // See http://www.hyperrealm.com/libconfig/ for syntax details.
8403fec8c34c Add dmd-style configuration file for rebuild usage. See #236 and thanks to ccuter for the patch!
Christian Kamm <kamm incasoftware de>
parents: 1000
diff changeset
3
8403fec8c34c Add dmd-style configuration file for rebuild usage. See #236 and thanks to ccuter for the patch!
Christian Kamm <kamm incasoftware de>
parents: 1000
diff changeset
4 // The default group is required
8403fec8c34c Add dmd-style configuration file for rebuild usage. See #236 and thanks to ccuter for the patch!
Christian Kamm <kamm incasoftware de>
parents: 1000
diff changeset
5 default:
8403fec8c34c Add dmd-style configuration file for rebuild usage. See #236 and thanks to ccuter for the patch!
Christian Kamm <kamm incasoftware de>
parents: 1000
diff changeset
6 {
8403fec8c34c Add dmd-style configuration file for rebuild usage. See #236 and thanks to ccuter for the patch!
Christian Kamm <kamm incasoftware de>
parents: 1000
diff changeset
7 // 'switches' holds array of string that are appends to the command line
8403fec8c34c Add dmd-style configuration file for rebuild usage. See #236 and thanks to ccuter for the patch!
Christian Kamm <kamm incasoftware de>
parents: 1000
diff changeset
8 // arguments before they are parsed.
8403fec8c34c Add dmd-style configuration file for rebuild usage. See #236 and thanks to ccuter for the patch!
Christian Kamm <kamm incasoftware de>
parents: 1000
diff changeset
9 switches = [
1528
15f1707721fa Updated default ldc2 configuration file.
Robert Clipsham <robert@octarineparrot.com>
parents: 1129
diff changeset
10 "-I@RUNTIME_DIR@/src/compiler/ldc",
15f1707721fa Updated default ldc2 configuration file.
Robert Clipsham <robert@octarineparrot.com>
parents: 1129
diff changeset
11 "-I@RUNTIME_DIR@/src/common",
1129
8403fec8c34c Add dmd-style configuration file for rebuild usage. See #236 and thanks to ccuter for the patch!
Christian Kamm <kamm incasoftware de>
parents: 1000
diff changeset
12 "-I@RUNTIME_DIR@/import",
8403fec8c34c Add dmd-style configuration file for rebuild usage. See #236 and thanks to ccuter for the patch!
Christian Kamm <kamm incasoftware de>
parents: 1000
diff changeset
13 "-L-L@PROJECT_BINARY_DIR@/../lib",
8403fec8c34c Add dmd-style configuration file for rebuild usage. See #236 and thanks to ccuter for the patch!
Christian Kamm <kamm incasoftware de>
parents: 1000
diff changeset
14 "-defaultlib=@RUNTIME_AIO@",
8403fec8c34c Add dmd-style configuration file for rebuild usage. See #236 and thanks to ccuter for the patch!
Christian Kamm <kamm incasoftware de>
parents: 1000
diff changeset
15 "-debuglib=@RUNTIME_AIO@"
8403fec8c34c Add dmd-style configuration file for rebuild usage. See #236 and thanks to ccuter for the patch!
Christian Kamm <kamm incasoftware de>
parents: 1000
diff changeset
16 ];
8403fec8c34c Add dmd-style configuration file for rebuild usage. See #236 and thanks to ccuter for the patch!
Christian Kamm <kamm incasoftware de>
parents: 1000
diff changeset
17 };