March 23, 2011
On Tue, 22 Mar 2011 20:22:18 -0400
Daniel Green <venix1@gmail.com> wrote:

> D2 has been released for testing. Now in a zip file.

Yay! I hope there will be release for FreeBSD soon so we can have proper 64bit port of D2 compiler.


Sincerely,
Gour

-- 
“In the material world, conceptions of good and bad are all mental speculations…” (Sri Caitanya Mahaprabhu)

http://atmarama.net | Hlapicina (Croatia) | GPG: CDBF17CA




March 23, 2011
On 22/03/2011 03:26, Daniel Green wrote:
> GDC D1 binaries are now available for Windows. The binaries are packaged
> as an addon for TDM-GCC 4.5.1.
>
> D2 will follow in the next couple of days. Both versions are being
> compiled to coexist. So a single installation should be capable of
> running D1 and D2.
>
>
> gcc version 4.5.1 20100731 (gdc hg r499:886b0a5af18a, using dmd 1.067)
>
> http://tdm-gcc.tdragon.net/download
> https://bitbucket.org/goshawk/gdc/downloads/gcc-4.5.1-tdm-1-gdc-r499.7z
>
> 7-zip is required to extract the package. http://7-zip.org
>
> - Disclaimer: This binary release is a developmental snapshot. It is
> highly probable things won't work right.
>
> Please post any issues at
> https://bitbucket.org/goshawk/gdc/issue/170

Another great news... looking forward to the D2 release as well!

-- 
Bruno Medeiros - Software Engineer
March 23, 2011
dsimcha wrote:
> On 3/22/2011 8:22 PM, Daniel Green wrote:
>> D2 has been released for testing. Now in a zip file.
>>
>> https://bitbucket.org/goshawk/gdc/downloads
>>
>> gcc-4.5.1-tdm-1-gdc-r499-20110322.zip
>>
>>  From here on out, D1 and D2 will be combined into a single release.
>> Since D1 appears more stable it is the default. Use -v2 to access D2.
>>
>> gdc dummy.d # Compiles dummy.d with D1.
>> gdc -v2 dummy.d # Compiles dummy.d with D2.
> 
> I can't run it because I get the following error:
> 
> cc1d.exe:  The program can't start because libcloog-0.dll is missing from your computer.

	Did you also install the tdm-gcc core package? IIRC libcloog should
be part of it...

		Jerome
-- 
mailto:jeberger@free.fr
http://jeberger.free.fr
Jabber: jeberger@jabber.fr



March 23, 2011
On 3/23/2011 3:46 PM, "Jérôme M. Berger" wrote:
> dsimcha wrote:
>> On 3/22/2011 8:22 PM, Daniel Green wrote:
>>> D2 has been released for testing. Now in a zip file.
>>>
>>> https://bitbucket.org/goshawk/gdc/downloads
>>>
>>> gcc-4.5.1-tdm-1-gdc-r499-20110322.zip
>>>
>>>   From here on out, D1 and D2 will be combined into a single release.
>>> Since D1 appears more stable it is the default. Use -v2 to access D2.
>>>
>>> gdc dummy.d # Compiles dummy.d with D1.
>>> gdc -v2 dummy.d # Compiles dummy.d with D2.
>>
>> I can't run it because I get the following error:
>>
>> cc1d.exe:  The program can't start because libcloog-0.dll is missing
>> from your computer.
>
> 	Did you also install the tdm-gcc core package? IIRC libcloog should
> be part of it...
>
> 		Jerome

Ok, did that and moved the GDC binaries into the bin/ directory of this installation.  Now, I get:

gdc.exe: CreateProcess: No such file or directory

March 23, 2011
On 3/23/2011 7:15 PM, dsimcha wrote:
> Ok, did that and moved the GDC binaries into the bin/ directory of this
> installation. Now, I get:
>
> gdc.exe: CreateProcess: No such file or directory
Did you move any of the files in libexec?  You may want to extract the zip file to your TDM installation.  Headers and libraries will need copied as well.

March 23, 2011
I think you need to add GDC's /bin to path.
March 24, 2011
Daniel Green Wrote:

> D2 has been released for testing. Now in a zip file.
> 
> https://bitbucket.org/goshawk/gdc/downloads
> 
> gcc-4.5.1-tdm-1-gdc-r499-20110322.zip
> 
>  From here on out, D1 and D2 will be combined into a single release.
> Since D1 appears more stable it is the default.  Use -v2 to access D2.
> 
> gdc dummy.d # Compiles dummy.d with D1.
> gdc -v2 dummy.d # Compiles dummy.d with D2.

----
import core.stdc.stdio;
int main()
{
	printf("hello, world");
	return 0;
}
----
gdc -v2 test.d -o test.exe
----
test
----
(no text)
----

the same for d1, lol
March 24, 2011
Kagamin Wrote:

> Daniel Green Wrote:
> 
> > D2 has been released for testing. Now in a zip file.
> > 
> > https://bitbucket.org/goshawk/gdc/downloads
> > 
> > gcc-4.5.1-tdm-1-gdc-r499-20110322.zip
> > 
> >  From here on out, D1 and D2 will be combined into a single release.
> > Since D1 appears more stable it is the default.  Use -v2 to access D2.
> > 
> > gdc dummy.d # Compiles dummy.d with D1.
> > gdc -v2 dummy.d # Compiles dummy.d with D2.
> 
> ----
> import core.stdc.stdio;
> int main()
> {
> 	printf("hello, world");
> 	return 0;
> }
> ----
> gdc -v2 test.d -o test.exe
> ----
> test
> ----
> (no text)
> ----
> 
> the same for d1, lol

turned out that the executable has a dependency on sjlj runtime now works fine
March 24, 2011
Daniel Green Wrote:

> D2 has been released for testing. Now in a zip file.
> 
> https://bitbucket.org/goshawk/gdc/downloads
> 
> gcc-4.5.1-tdm-1-gdc-r499-20110322.zip
> 
>  From here on out, D1 and D2 will be combined into a single release.
> Since D1 appears more stable it is the default.  Use -v2 to access D2.
> 
> gdc dummy.d # Compiles dummy.d with D1.
> gdc -v2 dummy.d # Compiles dummy.d with D2.

Is the AIX problem valid for windows too?
March 24, 2011
On 3/24/2011 6:53 PM, Kagamin wrote:
> Is the AIX problem valid for windows too?
What is the AIX problem?