This is the mail archive of the
fortran@gcc.gnu.org
mailing list for the GNU Fortran project.
Re: Compiling GCC under Cygwin
- From: Arjen Markus <arjen dot markus895 at gmail dot com>
- To: Angelo Graziosi <angelo dot graziosi at alice dot it>
- Cc: fortran <fortran at gcc dot gnu dot org>, gcc at gcc dot gnu dot org
- Date: Wed, 19 Jun 2013 21:01:49 +0200
- Subject: Re: Compiling GCC under Cygwin
- References: <51C1F5BF dot 2050706 at alice dot it>
Hi Angelo,
true, it is not Fortran-specific. I used this mailing-list because I
am familiar with it and because
the purpose of this attempt was to see if I can in some way contribute
other things than
bug reports ;).
The error you refer to is actually an error in the C source, whereas
the build error I got
has something to do with the Makefiles.
As for the build experiment itself:
- I downloaded the 4.8.1 source
- I configured the Makefiles with this command:
./configure --prefix=d:/gcc-src/gcc
- Then I ran make and the error message I reported before.
(It is not impossible that the error is a consequence of the
permission errors I got
before - they are not completely gone yet, as they re-surfaced in
another project.)
If I understand the issue correctly, I can probably get rid of it
tomorrow - as then the
laptop will be connected to the proper domain.
Anyway. thanks for the reaction. I will see if I can analyse it further.
Regards,
Arjen
2013/6/19 Angelo Graziosi <angelo.graziosi@alice.it>:
> Arjen Markus wrote:
>>
>> I am trying to compile GCC 4.8.1 under Cygwin.
>> ../.././gcc/ada/gcc-interface/Make-lang.in:677: *** target pattern
>> contains no `%'. Stop.
>> make[3]: Leaving directory
>> `/cygdrive/d/gcc-src/gcc-4.8.1/host-i686-pc-cygwin/gcc'
>> Makefile:4160: recipe for target `all-stage1-gcc' failed
>> make[2]: *** [all-stage1-gcc] Error 2
>
>
>
> Really that doesn't seems Fortran specific.. so I CCed GCC list...
>
> How you configure? Usually trunk builds fine with:
>
> PATH_TO/configure --prefix=/usr/local/gfortran --program-suffix=-4.9
> --enable-languages=c,c++,fortran --enable-checking=release
> --enable-threads=posix --enable-libgomp --enable-bootstrap
> --with-arch=native --with-tune=native --with-fpmath=sse --disable-libmudflap
> --disable-shared
>
> The only problem is this:
>
> http://gcc.gnu.org/ml/gcc/2013-06/msg00020.html
>
> but this patch
>
> Re: Failure bootstrapping GCC trunk on Cygwin
>
> seems to fix it...
>
>
> Ciao,
> Angelo.