comparison dmd2/readme.txt @ 1452:638d16625da2

LDC 2 compiles again.
author Robert Clipsham <robert@octarineparrot.com>
date Sat, 30 May 2009 17:23:32 +0100
parents f04dde6e882c
children
comparison
equal deleted inserted replaced
1423:42bd767ec5a4 1452:638d16625da2
1 1
2 The D Programming Language 2 The D Programming Language
3 Compiler Front End Source 3 Compiler Front End Source
4 Copyright (c) 1999-2002, by Digital Mars 4 Copyright (c) 1999-2009, by Digital Mars
5 www.digitalmars.com 5 http://www.digitalmars.com
6 All Rights Reserved 6 All Rights Reserved
7 7
8 8
9 This is the source code to the front end Digital Mars D compiler. 9 This is the source code to the front end Digital Mars D compiler.
10 It covers the lexical analysis, parsing, and semantic analysis 10 It covers the lexical analysis, parsing, and semantic analysis
11 of the D Programming Language defined in the documents at 11 of the D Programming Language defined in the documents at
12 www.digitalmars.com/d/ 12 http://www.digitalmars.com/d/
13
14 The optimizer, code generator, and object file generator are not part
15 of this source, hence the source does not currently constitute a complete,
16 compilable program. However, many people have expressed a strong interested
17 in producing a D compiler with the GNU compiler sources. This release should
18 enable that.
19 13
20 These sources are free, they are redistributable and modifiable 14 These sources are free, they are redistributable and modifiable
21 under the terms of the GNU General Public License (attached as gpl.txt), 15 under the terms of the GNU General Public License (attached as gpl.txt),
22 or the Artistic License (attached as artistic.txt). 16 or the Artistic License (attached as artistic.txt).
23 17
18 The optimizer and code generator sources are
19 covered under a separate license, backendlicense.txt.
20
24 It does not apply to anything else distributed by Digital Mars, 21 It does not apply to anything else distributed by Digital Mars,
25 including D compiler executables. 22 including D compiler executables.
26 23
27 -Walter Bright 24 -Walter Bright