Matthias Klose wrote:
> --enable-plugin is used by classpath (part of libjava) and now by GCC
> itself. disabling the build of the gcjwebplugin now disables plugin
> support in GCC as well. Please could the option for enabling GCC plugin
> support be renamed to something like --enable-plugins,
> --
On Mon, Oct 19, 2009 at 3:19 AM, Joel Sherrill
wrote:
> Hi,
>
> I got a random unsolicited email about arc-elf since
> I pop up in google a lot asking cross compiler questions.
> I decided to try to build it and as PR41747 indicates
> 4.3.4, 4.4.1, and the head all fail building libgcc2.c
> in the
The GNU Compiler Collection version 4.4.2 has been released.
GCC 4.4.2 is a bug-fix release containing fixes for regressions and
serious bugs in GCC 4.4.1. This release is available from the
FTP servers listed at:
http://www.gnu.org/order/ftp.html
Please do not contact me directly regarding
.../configure --target=i370-mvs --prefix=... --with-sysroot=... \
--enable-languages=c
where prefix points to the directory where the cross-compiler
should be installed, and sysroot points to the directory where
the MVS libraries and header are installed.
Ok, I used
../configure
Hi,
I compile an old code which use this and i think its compile with Gcc 2.95
and the
PPC GCC 1998 or 1999
it fail to compile with newer compiler.
#define DRAW_MAX4
char drawstrings[DRAW_MAX][] = {
"Number of points drawn using 3D hardware:",
"Number of lines drawn using
Paul Edwards wrote:
> Ok, I used
>
> ../configure --target=i370-mvspdp --prefix=/devel/mvscross
> --with-sysroot=/devel/mvshead
> --enable-languages=c
>
> plus make and make install
>
> then I went to
>
> mvscross/bin and renamed i370-mvspdp-gcc to i370-mvspdp-xxx
>
> and replaced it with
tbp writes:
> Merrily trying to make a test-case showing how unmanageable it is to
> try to override *math* flags per function, i soon had to stop
> because...
Please file a bug report.
__attribute__((optimize())) is definitely only half-baked.
Ian
Andrew Haley writes:
> Matthias Klose wrote:
>> --enable-plugin is used by classpath (part of libjava) and now by GCC
>> itself. disabling the build of the gcjwebplugin now disables plugin
>> support in GCC as well. Please could the option for enabling GCC plugin
>> support be renamed to somethin
Bernd Roesch writes:
> I compile an old code which use this and i think its compile with Gcc 2.95
> and the
> PPC GCC 1998 or 1999
> it fail to compile with newer compiler.
>
> #define DRAW_MAX4
> char drawstrings[DRAW_MAX][] = {
> "Number of points drawn using 3D hardware:",
Ian Lance Taylor wrote:
> Andrew Haley writes:
>
>> Matthias Klose wrote:
>>> --enable-plugin is used by classpath (part of libjava) and now by GCC
>>> itself. disabling the build of the gcjwebplugin now disables plugin
>>> support in GCC as well. Please could the option for enabling GCC plugin
>
On Mon, Oct 19, 2009 at 10:34 AM, Ian Lance Taylor wrote:
> tbp writes:
>
>> Merrily trying to make a test-case showing how unmanageable it is to
>> try to override *math* flags per function, i soon had to stop
>> because...
>
> Please file a bug report.
>
> __attribute__((optimize())) is definit
Hi Jeff and Vladimir.
Jeff: I'd be interested in trying the patch if you can send it my way.
Vladimir: Today I have seen reasonable improvements on
progressively-trimmed-down versions of a *single* test case by applying
some cost adjustments in the case when an operand wants one of our
bottom reg
On 10/11/09 12:13 PM, Terrence Miller wrote:
> (Version 4.5.0)
>
> There are plugin callbacks which trigger at the end of processing types
> and C++ functions,
> but I can not find a clean way for plugin code to notice a top-level
> variable declaration.
>
> I'm hoping that the answer does not re
Ian Bolton wrote:
Hi Jeff and Vladimir.
Jeff: I'd be interested in trying the patch if you can send it my way.
Vladimir: Today I have seen reasonable improvements on
progressively-trimmed-down versions of a *single* test case by applying
some cost adjustments in the case when an operand wants o
Benjamin Smedberg wrote:
On 10/11/09 12:13 PM, Terrence Miller wrote:
(Version 4.5.0)
There are plugin callbacks which trigger at the end of processing types
and C++ functions,
but I can not find a clean way for plugin code to notice a top-level
variable declaration.
I'm hoping that the an
Hi there. The architecture I'm working on porting gcc to has indirect
addressing but no constant offset or register offset versions. Code
like this:
void fill(int* p)
{
p[0] = 0;
p[1] = 0;
p[2] = 0;
p[3] = 0;
Turns into:
X = p
*X = 0
X = X + 4
*X = 0
X = p
X = X + 8
*X = 0
X = p
Joern Rennecke wrote:
Quoting Joel Sherrill :
Hi,
I got a random unsolicited email about arc-elf since
I pop up in google a lot asking cross compiler questions.
I decided to try to build it and as PR41747 indicates
4.3.4, 4.4.1, and the head all fail building libgcc2.c
in the same way. T
Quoting Joel Sherrill :
The code on the trunk is unbuildable and has been
for a long time. I'm not an arc user but wonder if it is better to have
functional
code on the trunk without a maintainer since it is available than
non-functional
code on the trunk without a maintainer. :)
It depends on
Thanks a lot for the help! It looks like creating a temporary
took care of it.
On Sat, Oct 17, 2009 at 7:41 AM, Richard Guenther
wrote:
> I think the call you insert is not of valid gimple form - an address
> argument has to fulfill the is_gimple_min_invariant() predicate.
> Thus I suspect you h
On Mon, Oct 19, 2009 at 7:34 PM, Ian Lance Taylor wrote:
> Please file a bug report.
> __attribute__((optimize())) is definitely only half-baked.
Apparently the code i've posted is just a variation around that 1 year
old PR 37565 and if that doesn't work, worrying about the rest is
entirely futile
Hi,
G++ could not split restore_gp.
Please check this test (from #line 15017 "configure" of
gcc/libstdc++-v3/).
# cat foo.cpp
struct S { ~S(); };
void bar();
void foo()
{
S s;
bar();
}
# ~/dev/gcc45/build/gcc/cc1plus -quiet foo.cpp -o foo.s -mno-shared -mplt
-mabicalls -G0
foo.cpp: In fun
Hi,
I have compiled and generated a C++ shared library with the "-fPIC" option.
But this shared library requires text relocation during runtime and is not
usable on seLinux which disables writeable text segments. The text relocation
is due to use of exceptions inside the shared library. There
22 matches
Mail list logo