Removed phobo's Makefile.in
[delight.git] / README
blob3e7eb42b0d190151be7e6fa1467f02ba640e11f9
1 This is Delight, a programming language based on D. For details, see:
3   http://delight.sourceforge.net/
5 There are two parts:
7 - gcc-4.1.2 contains a copy of GCC plus a modified version of GDC. These are provided
8   under the GPL license.
10 - dlt-lib contains the Delight standard library. This is released under the LGPL.
12 If you got this from a GIT checkout, you need to fetch the GDC and standard
13 library components separately, like this:
15   $ git submodule init
16   $ git submodule update
18 It's probably worth running 'git pull' in the dlt-lib and gcc-4.1.2/gcc/dlt
19 subdirectories after this to get the latest versions.
21 Run the autogen.sh script to run autoconf in various directories for you to create
22 the configure scripts.
25 INSTALLATION
27 To compile (only set CFLAGS=-m64 on x86_64 systems):
29 $ cd gcc-4.1.2
30 $ CFLAGS=-m64 ./configure --disable-multilib --disable-shared --prefix=/opt/dlt --enable-languages=c,dlt
31 $ make install
34 Thomas Leonard
35 2008-09-22