digitalmars.D.announce - GDC 0.11
- David Friedman (11/11) Apr 27 2005 Full release this time.
- Andrew Fedoniouk (7/18) Apr 27 2005 Cool, David!
- Dejan Lekic (11/12) Apr 28 2005 Yes, it means that GDC's build system will build i386-mingw cross compil...
- David Friedman (5/32) Apr 28 2005 Yes, Linux -> MinGW works. Other targets require more work than
- Roberto Mariottini (3/4) Apr 28 2005 The link for "Build Instructions" on the web page is broken.
- =?ISO-8859-1?Q?Anders_F_Bj=F6rklund?= (4/5) Apr 28 2005 Lose the "PRE", and it works:
- David Friedman (2/13) Apr 28 2005 Fixed.
- bug d.com (2/2) Apr 28 2005 Looks like this one is not fixed yet:
- David Friedman (7/13) Apr 28 2005 The work around for this is to compile all files with one command:
- Carlos Santander B. (12/24) Apr 28 2005 I can't compile it on cygwin (haven't tried linux yet). I get:
- David Friedman (4/35) Apr 29 2005 So far, I have only tested gcc 3.3.1 for cygwin. This looks like a
- Carlos Santander B. (4/9) May 06 2005 Could be. 3.4.3 worked well on both linux and cygwin.
- Thomas Kuehne (12/23) Apr 30 2005 -----BEGIN PGP SIGNED MESSAGE-----
- Thomas Kuehne (20/20) May 02 2005 -----BEGIN PGP SIGNED MESSAGE-----
- jicman (2/13) May 02 2005
- =?ISO-8859-1?Q?Anders_F_Bj=F6rklund?= (8/9) May 02 2005 "Ported" ? I guess you mean packaged for.
Full release this time. * Fixes o Reversed structure compare o Correct meaning of '-L' option in wrapper script o Static data GC bug on Linux * Improvements o Updated to DMD 0.121 o New target: MingGW o Included Anders F Björklund's man pages. o It is now possible to build a cross-compiler. Only MingGW is supported out-of-the-box, however.
Apr 27 2005
Cool, David! Could you decipher for me this: "Only MinGW is supported out-of-the-box, however." I can compile on Linux MinGW target, right? Andrew. "David Friedman" <d3rdclsmail_a_ _t_earthlink_d_._t_net> wrote in message news:d4pqhk$2p0r$1 digitaldaemon.com...Full release this time. * Fixes o Reversed structure compare o Correct meaning of '-L' option in wrapper script o Static data GC bug on Linux * Improvements o Updated to DMD 0.121 o New target: MingGW o Included Anders F Björklund's man pages. o It is now possible to build a cross-compiler. Only MingGW is supported out-of-the-box, however.
Apr 27 2005
I can compile on Linux MinGW target, right?Yes, it means that GDC's build system will build i386-mingw cross compiler too. Looks like it is default... It's nothing new GCC can build executables for so many different platforms - it's called cross-compiling. This is excellent - now I can make native Winblows applications on my Linux box, so I do not need to turn my XP machine on! :) BRAVO! -- ........... Dejan Lekic http://dejan.lekic.org
Apr 28 2005
Andrew Fedoniouk wrote:Cool, David! Could you decipher for me this: "Only MinGW is supported out-of-the-box, however." I can compile on Linux MinGW target, right? Andrew. "David Friedman" <d3rdclsmail_a_ _t_earthlink_d_._t_net> wrote in message news:d4pqhk$2p0r$1 digitaldaemon.com...Yes, Linux -> MinGW works. Other targets require more work than configure/make/make install. If anyone gets another to work, I can add it to the distribution so that it builds automatically. DavidFull release this time. * Fixes o Reversed structure compare o Correct meaning of '-L' option in wrapper script o Static data GC bug on Linux * Improvements o Updated to DMD 0.121 o New target: MingGW o Included Anders F Björklund's man pages. o It is now possible to build a cross-compiler. Only MingGW is supported out-of-the-box, however.
Apr 28 2005
In article <d4pqhk$2p0r$1 digitaldaemon.com>, David Friedman says...Full release this time.The link for "Build Instructions" on the web page is broken. Ciao
Apr 28 2005
Roberto Mariottini wrote:The link for "Build Instructions" on the web page is broken.Lose the "PRE", and it works: http://home.earthlink.net/~dvdfrdmn/d/INSTALL.html --anders
Apr 28 2005
Roberto Mariottini wrote:In article <d4pqhk$2p0r$1 digitaldaemon.com>, David Friedman says...Fixed.Full release this time.The link for "Build Instructions" on the web page is broken. Ciao
Apr 28 2005
Looks like this one is not fixed yet: http://www.digitalmars.com/drn-bin/wwwnews?digitalmars.D/21401
Apr 28 2005
bug d.com wrote:Looks like this one is not fixed yet: http://www.digitalmars.com/drn-bin/wwwnews?digitalmars.D/21401The work around for this is to compile all files with one command: dmd -c t.a a.d b.d For GDC, you also have to specify the -fall-sources option: dmd -c -fall-sources t.a a.d b.d gdc -c -fall-sources t.a a.d b.d David
Apr 28 2005
David Friedman wrote:Full release this time. * Fixes o Reversed structure compare o Correct meaning of '-L' option in wrapper script o Static data GC bug on Linux * Improvements o Updated to DMD 0.121 o New target: MingGW o Included Anders F Björklund's man pages. o It is now possible to build a cross-compiler. Only MingGW is supported out-of-the-box, however.I can't compile it on cygwin (haven't tried linux yet). I get: d/d-builtins.cglue.o(.text+0x1294): In function `handle_vector_size_attribute': /usr/src/gcc-3.4.1/gcc/d/d-bi-attrs-34.h:1145: undefined reference to `_reconstr uct_complex_type' collect2: ld returned 1 exit status make[1]: *** [cc1d.exe] Error 1 gcc version 3.4.1, ld version 2.15.94. OT: can anybody point me in how to build a cygwin->linux cross compiler? I've tried a couple of times and I'm having problems. TIA. -- Carlos Santander Bernal
Apr 28 2005
Carlos Santander B. wrote:David Friedman wrote:So far, I have only tested gcc 3.3.1 for cygwin. This looks like a problem that would affect any gcc 3.4.1, though. DavidFull release this time. * Fixes o Reversed structure compare o Correct meaning of '-L' option in wrapper script o Static data GC bug on Linux * Improvements o Updated to DMD 0.121 o New target: MingGW o Included Anders F Björklund's man pages. o It is now possible to build a cross-compiler. Only MingGW is supported out-of-the-box, however.I can't compile it on cygwin (haven't tried linux yet). I get: d/d-builtins.cglue.o(.text+0x1294): In function `handle_vector_size_attribute': /usr/src/gcc-3.4.1/gcc/d/d-bi-attrs-34.h:1145: undefined reference to `_reconstr uct_complex_type' collect2: ld returned 1 exit status make[1]: *** [cc1d.exe] Error 1 gcc version 3.4.1, ld version 2.15.94. OT: can anybody point me in how to build a cygwin->linux cross compiler? I've tried a couple of times and I'm having problems. TIA.
Apr 29 2005
David Friedman wrote:So far, I have only tested gcc 3.3.1 for cygwin. This looks like a problem that would affect any gcc 3.4.1, though. DavidCould be. 3.4.3 worked well on both linux and cygwin. -- Carlos Santander Bernal
May 06 2005
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 David Friedman schrieb am Thu, 28 Apr 2005 00:58:55 -0400:Full release this time. * Fixes o Reversed structure compare o Correct meaning of '-L' option in wrapper script o Static data GC bug on Linux * Improvements o Updated to DMD 0.121 o New target: MingGW o Included Anders F Björklund's man pages. o It is now possible to build a cross-compiler. Only MingGW is supported out-of-the-box, however.DStress results for Linux are now online http://dstress.kuehne.cn/www/dstress.html There have been no regressions apart from those known for DMD. Thomas -----BEGIN PGP SIGNATURE----- iD8DBQFCdHoR3w+/yD4P9tIRAvhZAJ9fZigT2uCiMq1siQhDYqyhxyz34QCggOTt JC0p236QTJ2tKTu44M9Jtg8= =NSgD -----END PGP SIGNATURE-----
Apr 30 2005
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Thanks to Anders for running DStress on Mac: http://dtsress.kuehne.cn/www/dstress.html There seem to be some issues with associative_arrays and unicode. http://dstress.kuehne.cn/run/associative_array_10.d http://dstress.kuehne.cn/run/associative_array_14.d http://dstress.kuehne.cn/run/associative_array_17.d http://dstress.kuehne.cn/run/unicode_03.d http://dstress.kuehne.cn/run/unicode_05.d http://dstress.kuehne.cn/run/unicode_06.d raw data: http://dstress.kuehne.cn/raw_results/mac-OS-X-10.3.9_gdc-0.11 http://dstress.kuehne.cn/raw_results/mac-OS-X-10.3.9_gdc-0.11.log Thomas -----BEGIN PGP SIGNATURE----- iD8DBQFCdkH33w+/yD4P9tIRApYtAKDO3JgIIQGfzVcQB05MGmUitVFjtwCfTn8e 41NvUh5LkZEL/AVTbEbfA0g= =I6Se -----END PGP SIGNATURE-----
May 02 2005
Has this been ported to Gentoo, yet? David Friedman says...Full release this time. * Fixes o Reversed structure compare o Correct meaning of '-L' option in wrapper script o Static data GC bug on Linux * Improvements o Updated to DMD 0.121 o New target: MingGW o Included Anders F Björklund's man pages. o It is now possible to build a cross-compiler. Only MingGW is supported out-of-the-box, however.
May 02 2005
jicman wrote:Has this been ported to Gentoo, yet?"Ported" ? I guess you mean packaged for. Anyway, it sure has been ebuildified. :-) GDC 0.10 is available now, GDC 0.11 shortly. http://bugs.gentoo.org/show_bug.cgi?id=48136 No idea if/when they'll get around to adding it (so you can emerge it as usual, without .ebuild) --anders
May 02 2005