Re: Dynamically linking against GMP and MPFR

2007-05-25 Thread Daniel Jacobowitz
normal dynamically linked program and should behave like one IMO. -- Daniel Jacobowitz CodeSourcery

Re: Dynamically linking against GMP and MPFR

2007-05-25 Thread Daniel Jacobowitz
is not a vital runtime component of the system, so its dependencies do not need to be exceptionally robust in the way that glibc's or even libstdc++'s do. If you were talking about linking libstdc++ to MPFR I'd have a different story to tell. -- Daniel Jacobowitz CodeSourcery

Re: Dynamically linking against GMP and MPFR

2007-05-25 Thread Daniel Jacobowitz
to build them that way. On the other hand I am positive Debian will not ship its system compiler that way; Debian policy is quite clear on this, dynamic libraries should always be used. -- Daniel Jacobowitz CodeSourcery

Re: Combined tree builds for mingw32

2007-05-07 Thread Daniel Jacobowitz
. It uses _UPPER instead. Does this mean --with-newlib does not work for mingw32? (Note, you can't build without it either.) -- Daniel Jacobowitz CodeSourcery

Re: Combined tree builds for mingw32

2007-05-07 Thread Daniel Jacobowitz
On Mon, May 07, 2007 at 01:37:51PM -0400, Daniel Jacobowitz wrote: That third one does not define _U. It uses _UPPER instead. Does this mean --with-newlib does not work for mingw32? (Note, you can't build without it either.) That does appear to be the case. With --with-newlib, we get

Re: Combined tree builds for mingw32

2007-05-07 Thread Daniel Jacobowitz
On Mon, May 07, 2007 at 07:47:01PM +0200, Paolo Carlini wrote: Daniel Jacobowitz wrote: The failing command is trying to compile the PCH. This means that we're including a large number of libstdc++ headers in a row. One of the first ones pulls in c++config.h, which has #undef max

Re: Combined tree builds for mingw32

2007-05-07 Thread Daniel Jacobowitz
locale.h float.h]) GLIBCXX_CHECK_LINKER_FEATURES GLIBCXX_CHECK_COMPLEX_MATH_SUPPORT Those are the bad tests. -- Daniel Jacobowitz CodeSourcery

Re: Combined tree builds for mingw32

2007-05-07 Thread 'Daniel Jacobowitz'
--with-libs=/usr/i586-mingw32msvc/include --). So I think crossconfig.m4 should be fixed for mingw32 to support combined tree builds, but it's not as big a problem as I thought it was. I'll take a stab at fixing crossconfig.m4 if I can find a chance. -- Daniel Jacobowitz CodeSourcery

Re: Builtin functions?

2007-04-16 Thread Daniel Jacobowitz
where my wrong assumption is. Any suggestions? What do you mean, it's built in? It comes from a source file, so almost by definition it isn't. -- Daniel Jacobowitz CodeSourcery

Re: A question on gimplifier

2007-04-14 Thread Daniel Jacobowitz
says that it clobbers its first input, then the RTL register allocator is responsible for handling that. -- Daniel Jacobowitz CodeSourcery

Re: libstdc++.dylib linking problem on Darwin

2007-04-12 Thread Daniel Jacobowitz
= \ $(mkinstalldirs) $(DESTDIR)$(slibdir); \ $(INSTALL_DATA) $(SHLIB_SONAME) \ $(DESTDIR)$(slibdir)/$(SHLIB_SONAME) -- Daniel Jacobowitz CodeSourcery

Re: RFC: GIMPLE tuples. Design and implementation proposal

2007-04-10 Thread Daniel Jacobowitz
cache friendly accesses for a change. FYI, I did this with PCH once... I never followed it through well enough to get consistent results from it, but I did get some remarkable jumps during testing. -- Daniel Jacobowitz CodeSourcery

Re: Integer overflow in operator new

2007-04-07 Thread Daniel Jacobowitz
(INT_MAX is handled specially). In general this still works out to be more memory than can be allocated and the test tests what it wanted to (bad_alloc). -- Daniel Jacobowitz CodeSourcery

Re: Variable scope debug info

2007-04-05 Thread Daniel Jacobowitz
a significant difference. -- Daniel Jacobowitz CodeSourcery

Re: tuples: data structure separation from trees

2007-03-30 Thread Daniel Jacobowitz
approach would even require locations on constants. And that's obviously infeasible, so... -- Daniel Jacobowitz CodeSourcery

Re: tuples: data structure separation from trees

2007-03-29 Thread Daniel Jacobowitz
wish someone had sufficient incentive to sit down and design a proper solution to our degenerating debug info. -- Daniel Jacobowitz CodeSourcery

Re: nested backticks in Makefile

2007-03-27 Thread Daniel Jacobowitz
On Tue, Mar 27, 2007 at 03:01:04PM -0400, DJ Delorie wrote: - CROSS_SYSTEM_HEADER_DIR='$(gcc_tooldir)/sys-include' + CROSS_SYSTEM_HEADER_DIR='$(shell echo $(gcc_tooldir)/sys-include)' Don't you need more quotes than that? -- Daniel Jacobowitz CodeSourcery

Re: nested backticks in Makefile

2007-03-27 Thread Daniel Jacobowitz
that? I think if we quoted it more, we'd end up passing the backticks along instead of processing them, and we'd end up right where we started. I only meant: CROSS_SYSTEM_HEADER_DIR='$(shell echo $(gcc_tooldir)/sys-include)' -- Daniel Jacobowitz CodeSourcery

Re: nested backticks in Makefile

2007-03-27 Thread Daniel Jacobowitz
with $(libdir) which will come from $(prefix), so there's an unquoted $(prefix) there. ../gcc/configure --prefix=/usr/local/where * am * i will thus lead to $(shell echo /usr/local/where * am * i/sys-include), which will wildcard. -- Daniel Jacobowitz CodeSourcery

Re: Linking shared libs against shared libs

2007-03-25 Thread Daniel Jacobowitz
this: gcc test.c -o test.so -shared -fPIC [-s] The problem is that i'd expect gcc/ld to abort with an error, but it just 'successfully' links something. Am i missing something? How can ld link against a definitely unknown function? See the linker manual for -z defs. -- Daniel Jacobowitz

Re: --disable-multilib broken on x86_64

2007-03-24 Thread Daniel Jacobowitz
maybe you (or someone who understsands the build scripts) can fully test it. libgcc should not use AC_CANONICAL_TARGET; --target doesn't mean anything to a target library. I'm not sure about libdecnumber - it probably shouldn't be sensitive to $target either. -- Daniel Jacobowitz CodeSourcery

Re: We're out of tree codes; now what?

2007-03-21 Thread Daniel Jacobowitz
if you've got nothing but a type code in it. Have a couple of constant TYPE_LANG_SPECIFIC instances in rodata :-) Which is less useful if you want to move things out of the common tree, of course. -- Daniel Jacobowitz CodeSourcery

Re: Building without bootstrapping

2007-03-19 Thread Daniel Jacobowitz
On Mon, Mar 19, 2007 at 05:25:37AM -0700, Karthikeyan M wrote: Thanks for the information. So, if I want to debug a bug in the cc1 code that causes target library build to fail - should I just use the cc1 that is generated in objdir/gcc/ ? Yes. -- Daniel Jacobowitz CodeSourcery

Re: Google SoC Project Proposal: Better Uninitialized Warnings

2007-03-19 Thread Daniel Jacobowitz
On Mon, Mar 19, 2007 at 01:49:55PM -0400, Andrew MacLeod wrote: Perhaps this ought to be looked at again with some seriousness. I think this is an idea whose time has either come, or will shortly. GCC's -O0 is much more extreme than that of other compilers I've used. -- Daniel Jacobowitz

Re: Building mainline and 4.2 on Debian/amd64

2007-03-19 Thread Daniel Jacobowitz
' into a system location, but that's about it. And usually one shouldn't do that anyway. There's /lib64 - lib and /usr/lib64 - lib symlinks, which help out. -- Daniel Jacobowitz CodeSourcery

Re: Question for removing trailing whitespaces (not vertical tab) from source

2007-03-13 Thread Daniel Jacobowitz
are, but they aren't in most GNU software. This is, unsurprisingly, how emacs behaves. Personally I think that regardless of your indentation preferences, using anything besides eight column tab stops for \t is silly; that's what cat is going to use. -- Daniel Jacobowitz CodeSourcery

Re: Updating libtool in GCC and srctree

2007-03-13 Thread Daniel Jacobowitz
options though. Yes, you always want to match ACLOCAL_AMFLAGS from Makefile.am. -- Daniel Jacobowitz CodeSourcery

Re: PATCH: make_relative_prefix oddity

2007-03-13 Thread Daniel Jacobowitz
and leave make_relative_prefix unchanged: 2006-04-28 Joseph S. Myers [EMAIL PROTECTED] * gcc.c (process_command): Add program name to GCC_EXEC_PREFIX value before passing to make_relative_prefix. -- Daniel Jacobowitz CodeSourcery

Re: Detemining the size of int_fast8_t etc. in the frontend

2007-03-07 Thread Daniel Jacobowitz
and with cross compilations. I'd file a bug report. If it is an OS bug, it can be fixed by fixincludes. He's talking about finding the target's int_fast8_t in the frontend. That's another issue entirely. -- Daniel Jacobowitz CodeSourcery

Re: [RFC]possible improvements to --with-sysroot

2007-03-05 Thread Daniel Jacobowitz
On Tue, Mar 06, 2007 at 02:05:06AM +0800, Zhang Le wrote: I have used strace -f to check where linker looked for -lqt-mt. From what I have observed, it seems that ld didn't use $SYSROOT/etc/ld.so.conf. Well, it's supposed to, so I suggest you check what's happened in ld. -- Daniel Jacobowitz

Re: Re; Maintaining, was: Re: Reduce Dwarf Debug Size

2007-03-01 Thread Daniel Jacobowitz
of the bugmasters. Good luck keeping people. It's a crappy job. -- Daniel Jacobowitz CodeSourcery

Re: GCC 4.2.0 Status Report (2007-02-19)

2007-02-21 Thread Daniel Jacobowitz
quite unpleasant - both for the user, and for the poor compiler developer who has to figure out what happened. -- Daniel Jacobowitz CodeSourcery

Re: GCC 4.2.0 Status Report (2007-02-19)

2007-02-21 Thread Daniel Jacobowitz
more patches or even re-branching as a real option. I've been convinced of the same. If we (GCC developers) shipped it with the aliasing fixes reverted, I'm not sure quite what we (CodeSourcery) would do with the result - but I bet we'd at least consider reapplying them. -- Daniel Jacobowitz

Re: GCC 4.2.0 Status Report (2007-02-19)

2007-02-20 Thread Daniel Jacobowitz
to stand by it. On the other hand, I consider this a fairly serious bug in 4.1 (and I've seen customers encounter it at least twice off the top of my head). It depends what your tolerance for wrong-code bugs is. -- Daniel Jacobowitz CodeSourcery

Re: Fw: Strange paths for gcc for x86_64-pc-mingw32

2007-02-19 Thread Daniel Jacobowitz
-gcc.exe also; do you? The one in /usr/local/x86_64-pc-mingw32/bin is different, and may not work - I think the way that normally happens involves symbolic links, or something similar. Anyway, you don't need to use it. -- Daniel Jacobowitz CodeSourcery

Re: problem building gcc4-4.3.0-20070209

2007-02-10 Thread Daniel Jacobowitz
in the `then' branch. This seems horribly wrong somehow. Aren't we intested in the ${build} - ${host} compiler at this point anyway? So shouldn't we be testing it? I think the whole block can go. -- Daniel Jacobowitz CodeSourcery

Re: problem building gcc4-4.3.0-20070209

2007-02-10 Thread Daniel Jacobowitz
we autoconfiscate. Something like this? Yes, pretty much (though I don't see the point in the CFLAGS -g assignment either). -- Daniel Jacobowitz CodeSourcery

Re: problem building gcc4-4.3.0-20070209

2007-02-09 Thread Daniel Jacobowitz
is? Is there anything in the autoconf documentation about not using some macros inside conditional statements? -- Daniel Jacobowitz CodeSourcery

Top level libgcc migration tips

2007-01-27 Thread Daniel Jacobowitz
I've put up some information on the wiki about moving configuration information from gcc to libgcc. Please, feel free to add to it! http://gcc.gnu.org/wiki/Top-Level_Libgcc_Migration -- Daniel Jacobowitz CodeSourcery

Re: Compiling libgcc functions with non-default LIBGCC2_UNITS_PER_WORD

2007-01-21 Thread Daniel Jacobowitz
. It there a way of making use of this facility in a more elegant way than putting the whole gcc command line in a target makefile fragment? I'm not sure I understand what you want to do. Could you give me a bigger example? Those bits are only used for fix/float conversions. -- Daniel Jacobowitz

Re: Compiling libgcc functions with non-default LIBGCC2_UNITS_PER_WORD

2007-01-21 Thread Daniel Jacobowitz
+= $(patsubst %,%_s$(objext),$(siintfuncs)) endif If you think it would be useful for enough targets, you could add some code to automatically extract the bits before and after the colon and give this a standard name that tdep files could set. That should get you started. -- Daniel Jacobowitz

Re: Running GCC tests on installed compiler

2007-01-12 Thread Daniel Jacobowitz
: http://gcc.gnu.org/ml/gcc-announce/1997-1998/msg0.html :-) Which is the I feel lucky google(site:gcc.gnu.org how to run installed GCC_UNDER_TEST) result. For the less old-school inclined, try contrib/test_installed. -- Daniel Jacobowitz CodeSourcery

Re: main(), registers and gdb

2007-01-10 Thread Daniel Jacobowitz
from the error message that this one is not too recent. -- Daniel Jacobowitz CodeSourcery

Re: main(), registers and gdb

2007-01-10 Thread Daniel Jacobowitz
compilers, arguments, and functions named main. And honestly, I have no idea how that happened. Does it happen with a current GDB? I suspect from the error message that this one is not too recent. It's gdb 6.5, so reasonably recent. Please try a current snapshot. Thanks. -- Daniel

Re: Do we want non-bootstrapping make back?

2007-01-05 Thread Daniel Jacobowitz
no intention of touching the build system for the release branch, in any case. -- Daniel Jacobowitz CodeSourcery

Re: Do we want non-bootstrapping make back?

2007-01-05 Thread Daniel Jacobowitz
was only talking about whether the decision was made at configure or make time. -- Daniel Jacobowitz CodeSourcery

Re: Do we want non-bootstrapping make back?

2007-01-05 Thread Daniel Jacobowitz
don't have time to do it before 4.2.0. -- Daniel Jacobowitz CodeSourcery

Re: __sync_bool_compare_and_swap

2007-01-05 Thread Daniel Jacobowitz
one; Debian's compilers default to generating code for a 486 or later. -- Daniel Jacobowitz CodeSourcery

Re: Top level libgcc checked in

2007-01-04 Thread Daniel Jacobowitz
On Thu, Jan 04, 2007 at 04:19:17PM +1100, Ben Elliston wrote: On Wed, 2007-01-03 at 23:28 -0500, Daniel Jacobowitz wrote: Right now the libgcc configuration is completely tied up with gcc/Makefile. As parts of the configuration process move from gcc/config/ to libgcc/config/ (or libgcc's

Re: trunk gcc has problems finding crtbegin.o

2007-01-04 Thread Daniel Jacobowitz
/ but rather into some path/lib/gcc/i686-pc-linux-gnu/. Is this related to the recent libgcc changes? Yes, it's my fault. The last time I tested make install, they went to the right place. I'm building right now to find out what's gone wrong. -- Daniel Jacobowitz CodeSourcery

Re: trunk gcc has problems finding crtbegin.o

2007-01-04 Thread Daniel Jacobowitz
On Thu, Jan 04, 2007 at 08:59:51AM -0500, Daniel Jacobowitz wrote: On Thu, Jan 04, 2007 at 02:32:19PM +0100, Martin Reinecke wrote: /usr/bin/ld: crtbegin.o: No such file: No such file or directory collect2: ld returned 1 exit status This probably happens because the crt*.o files

Re: libgcc

2007-01-04 Thread Daniel Jacobowitz
to remove them :-) -- Daniel Jacobowitz CodeSourcery

Re: Do we want non-bootstrapping make back?

2007-01-04 Thread Daniel Jacobowitz
to support with toplevel bootstrap. So what has changed? Not much. I'm convinced it would be feasible, but definitely not easy, so I wanted to see how much interest there was - seems like some, but not a lot. -- Daniel Jacobowitz CodeSourcery

Re: How to dedicate a register for special purpose in gcc?

2007-01-04 Thread Daniel Jacobowitz
but still have no idea. I would *really* appreciate any help I can get on this issue! Take a look at -ffixed-REG. -- Daniel Jacobowitz CodeSourcery

Top level libgcc checked in

2007-01-03 Thread Daniel Jacobowitz
gcc and the target libraries separately. -- Daniel Jacobowitz CodeSourcery

Re: Link tests not allowed

2007-01-01 Thread Daniel Jacobowitz
-aix5.2.0.0/include -isystem /home/rupp/gnat/powerpc-ibm-aix5.2.0.0/sys-include -c -O2 -g conftest.c 5 I would recommend trying to link a program using exactly that command line (without the -c conftest.c of course) and seeing what it tells you. The problem is usually obvious. -- Daniel

Re: Link tests not allowed

2006-12-31 Thread Daniel Jacobowitz
really ought to (A) get logged in config.log, and (B) tell you why it decided link tests were forbidden. (And it's my fault originally IIRC.) I'm not at all sure how the nm failure ends up leading to this problem, but I'll take your word for that part. -- Daniel Jacobowitz CodeSourcery

Re: changing configure to default to gcc -g -O2 -fwrapv ...

2006-12-29 Thread Daniel Jacobowitz
the Steering Committee. This is a textbook example of what they're for. -- Daniel Jacobowitz CodeSourcery

Re: [heads-up] disabling ../configure --disable-bootstrap make bootstrap

2006-12-29 Thread Daniel Jacobowitz
top level bootstrap rules went in, every time the subject came up - this really shouldn't be a surprise. Libgcc will no longer be configured by the gcc subdirectory's makefile. Therefore there will be no startfiles or libgcc for the new compiler to use. -- Daniel Jacobowitz CodeSourcery

Re: [heads-up] disabling ../configure --disable-bootstrap make bootstrap

2006-12-29 Thread Daniel Jacobowitz
different by bootstrapping just the compiler? -- Daniel Jacobowitz CodeSourcery

Re: [heads-up] disabling ../configure --disable-bootstrap make bootstrap

2006-12-29 Thread Daniel Jacobowitz
binutils too. That's less obviously useful. But in a GCC-only tree we bootstrap intl, gcc, libcpp, libdecnumber, libiberty, and zlib: all things linked directly into the compiler. -- Daniel Jacobowitz CodeSourcery

Do we want non-bootstrapping make back?

2006-12-29 Thread Daniel Jacobowitz
- if there's a convincing reason to do so. -- Daniel Jacobowitz CodeSourcery

Re: Gprof and shared libraries

2006-12-28 Thread Daniel Jacobowitz
. -- Daniel Jacobowitz CodeSourcery

Re: configuration options policy (at toplevel or only inside gcc/)?

2006-12-14 Thread Daniel Jacobowitz
On Thu, Dec 14, 2006 at 10:19:12AM +0100, Basile STARYNKEVITCH wrote: In other words, should I make all my configurable flag visible by the toplevel configure and propagated (thru Makefile.tpl) to gcc/ or not? No, you shouldn't. Only add them to subdirs that need them. -- Daniel Jacobowitz

Reviewer for top level libgcc

2006-11-30 Thread Daniel Jacobowitz
first, but haven't heard back from any of them...) -- Daniel Jacobowitz CodeSourcery

powerpc64-gnu libgcc?

2006-11-24 Thread Daniel Jacobowitz
quite at present; powerpc64-gnu does not include t-ppccomm. powerpc-gnu does. -- Daniel Jacobowitz CodeSourcery

Re: Do not use autoconf 2.60 yet

2006-11-14 Thread Daniel Jacobowitz
; I'm not sure what's holding that up now all subdirectories of gcc and src have been moved.) At this point I believe there are no more blockers. Steve Ellcey would be the person to ask. -- Daniel Jacobowitz CodeSourcery

Re: Reducing the size of C++ executables - eliminating malloc

2006-11-12 Thread Daniel Jacobowitz
doesn't reference the personality routine if it's going to have nothing to do, shouldn't we? -- Daniel Jacobowitz CodeSourcery

Re: Reducing the size of C++ executables - eliminating malloc

2006-11-12 Thread Daniel Jacobowitz
. For .eh_frame, though, the personality routine is only necessary to run cleanups and check exception specs. -- Daniel Jacobowitz CodeSourcery

Re: Reducing the size of C++ executables - eliminating malloc

2006-11-12 Thread Daniel Jacobowitz
On Sun, Nov 12, 2006 at 05:11:39PM -0800, Mark Mitchell wrote: Daniel Jacobowitz wrote: If you try what Michael's been saying, you'll notice that trivial C++ files get the personality routine reference even if they don't have anything with a destructor which would need cleaning up. We

Re: Threading the compiler

2006-11-11 Thread Daniel Jacobowitz
compilation most of the memory allocated is definitely global. Past a certain point much of that is probably readonly. However, it would take some clever interfaces and discipline to _guarantee_ that any particular global bit was shareable. -- Daniel Jacobowitz CodeSourcery

Re: Bootstrap failure on trunk on linux? (libgmp.so.3 exists, but not found)

2006-11-04 Thread Daniel Jacobowitz
. -- Daniel Jacobowitz CodeSourcery

Re: Bootstrap failure on trunk on linux? (libgmp.so.3 exists, but not found)

2006-11-04 Thread Daniel Jacobowitz
, since it's only used in the build (right?). No, xgcc is installed as gcc. If you have a dynamic libgmp, it will be used. -- Daniel Jacobowitz CodeSourcery

Re: Question about LTO dwarf reader vs. artificial variables and formal arguments

2006-10-21 Thread Daniel Jacobowitz
we're focusing on C right now :-) I don't think the design precludes this sort of thing, but we won't know how it all fits together until more's been done. -- Daniel Jacobowitz CodeSourcery

Re: building gcc

2006-10-12 Thread Daniel Jacobowitz
, but it doesn't seem to work for gcc. Use CFLAGS=-g ../gcc-src/configure. The top level file is still autoconf 2.13. -- Daniel Jacobowitz CodeSourcery

Re: Including GMP/MPFR in GCC repository?

2006-10-10 Thread Daniel Jacobowitz
recommend anyone who wants to attempt intl be very very careful. Our version has a modified build system, and other directories get their configuration information from it (config/gettext-sister.m4). -- Daniel Jacobowitz CodeSourcery

Re: 4.1.1 spec files missing, FAQ misinformation

2006-10-04 Thread Daniel Jacobowitz
to the same dir. What output do you see from gcc -v? Not any more. The default changed some time ago. Some distributors configure them to the same location. Jeff, for background, up until a few releases ago cc1 and specs would always be in the same directory. -- Daniel Jacobowitz CodeSourcery

Re: frame unwind issue with discontiguous code

2006-09-28 Thread Daniel Jacobowitz
this to the Dwarf standard, I'm trying my luck here. You could ask, um, on the Dwarf list... See dwarf.freestandards.org. -- Daniel Jacobowitz CodeSourcery

Re: preprocessing question

2006-09-25 Thread Daniel Jacobowitz
no nested replacement of x occurred within the processing of alt_x(). It's a different scan. -- Daniel Jacobowitz CodeSourcery

Re: GCC 4.3 Platform List

2006-09-22 Thread Daniel Jacobowitz
, it doesn't really make up for testing on hardware. Not unless someone donates a lot of time to run good hardware certification tests on it, anyway :-) -- Daniel Jacobowitz CodeSourcery

Re: GCC 4.3 Platform List

2006-09-21 Thread Daniel Jacobowitz
it is now. It's settled down quite a bit; I would be happy to see mips64-linux-gnu on the list now. -- Daniel Jacobowitz CodeSourcery

Re: question about -static-libgcc

2006-09-19 Thread Daniel Jacobowitz
other system library. Maybe check with readelf -d if it is directly DT_NEEDED from the executable? -- Daniel Jacobowitz CodeSourcery

Re: LTO (link time optimisation) branch (and IPO)?

2006-09-18 Thread Daniel Jacobowitz
On Mon, Sep 18, 2006 at 04:36:26PM +0200, Basile STARYNKEVITCH wrote: Is the LTO branch inactive now? This surprises me! svn info gives me Why do you think a data of last Thursday means it is inactive? It isn't, as you can see if you follow gcc-patches. -- Daniel Jacobowitz CodeSourcery

Re: question about -print-search-dirs

2006-09-12 Thread Daniel Jacobowitz
? If it was the /../lib64 suffix, those are added _after_ the list of directories to search are decided. They're added when we consider whether the user asked for -m32 or -m64 (see multilib in the documentation). -- Daniel Jacobowitz CodeSourcery

Re: DWARF2 DW_TAG_base_type for void?

2006-09-06 Thread Daniel Jacobowitz
for void (in the case of a void * pointer type). Is that not the case? Void isn't a base type. The DWARF 3 standard way to represent this is DW_TAG_unspecified_type. -- Daniel Jacobowitz CodeSourcery

Re: First cut on outputing gimple for LTO using DWARF3. Discussion invited!!!!

2006-09-01 Thread Daniel Jacobowitz
the impression he was still open to using it for other things, like types. I may have been mistaken. -- Daniel Jacobowitz CodeSourcery

Re: First cut on outputing gimple for LTO using DWARF3. Discussion invited!!!!

2006-09-01 Thread Daniel Jacobowitz
that confusing dwarf-for-types and dwarf-for-gimple would be a mistake. -- Daniel Jacobowitz CodeSourcery

Re: First cut on outputing gimple for LTO using DWARF3. Discussion invited!!!!

2006-09-01 Thread Daniel Jacobowitz
On Fri, Sep 01, 2006 at 10:19:07AM -0400, Kenneth Zadeck wrote: Daniel Jacobowitz wrote: On Fri, Sep 01, 2006 at 09:45:34AM -0400, Kenneth Zadeck wrote: Given that Mark, and for that matter no one else, did not really push back, I am pretty much committed not to use dwarf

Re: First cut on outputing gimple for LTO using DWARF3. Discussion invited!!!!

2006-08-31 Thread Daniel Jacobowitz
, for instance, and you'll tend to degrade performance. -- Daniel Jacobowitz CodeSourcery

Re: test for excess errors

2006-08-23 Thread Daniel Jacobowitz
-coded filtering to the captured stderr output... There is a prune routine in the test harness for warnings we do not care about. Actually, I wonder if -Wl,2 -Wl,/dev/null would work!? (modulo suitable quote/escaping). It wouldn't; there's no suitable quoting possible. -- Daniel Jacobowitz

Re: test for excess errors

2006-08-23 Thread Daniel Jacobowitz
that. -- Daniel Jacobowitz CodeSourcery

Re: = {0} in bss?

2006-08-22 Thread Daniel Jacobowitz
that the resulting executable can find the beginning of that section and/or make assumptions based on that. The default is `-fzero-initialized-in-bss'. -- Daniel Jacobowitz CodeSourcery

Re: define_expand

2006-08-15 Thread Daniel Jacobowitz
(and for things like combine, which test if an instruction is valid). -- Daniel Jacobowitz CodeSourcery

Re: 'xxx' may be used uninitialized in this function

2006-08-09 Thread Daniel Jacobowitz
hush up about any uninitialized argument value. There's more to it than that, unless your compiler is very broken. GCC should not warn for int x; foo (x);. -- Daniel Jacobowitz CodeSourcery

Re: 'xxx' may be used uninitialized in this function

2006-08-09 Thread Daniel Jacobowitz
, one can't look at a bug of this sort without a compilable test case. Andrew correctly pointed out that this optimization is affected by (for instance) inlining. -- Daniel Jacobowitz CodeSourcery

Re: sorry, unimplemented: 64-bit mode not compiled in - ?!

2006-07-28 Thread Daniel Jacobowitz
for compilation or has this overhead changed? They haven't done any measuring I know of, but we needed 64-bit compilers for a variety of reasons and this was much less disruptive than packaging a second copy of GCC. -- Daniel Jacobowitz CodeSourcery

Re: sorry, unimplemented: 64-bit mode not compiled in - ?!

2006-07-27 Thread Daniel Jacobowitz
also possible to build 32-bit configurations which support 64-bit compilation - but the default i686-linux configuration does not. The i686-solaris2.10 port does, and Debian's i486-linux compilers do also (local patch). -- Daniel Jacobowitz CodeSourcery

Re: Searching configured and relocated prefix.

2006-07-23 Thread Daniel Jacobowitz
adjust the behavior as necessary, or document useful tricks for working with such things in the manual. -- Daniel Jacobowitz CodeSourcery

Re: MIPS RDHWR instruction reordering

2006-07-22 Thread Daniel Jacobowitz
-delay case. It will still work in a delay slot, but it's a much heavier-weight operation. So, until and unless there is a revision of the MIPS architecture on which this instruction is not guaranteed to trap, I think we should not put it in a delay slot. -- Daniel Jacobowitz CodeSourcery

Re: using threads with gcc on fedora (undefined reference to pthread_create)

2006-07-19 Thread Daniel Jacobowitz
do I have to use when compiling my code? Is there any document on this? This is a list for the developers of GCC. You may get more help on the gcc-help list. It sounds like you didn't link with -lpthread. -- Daniel Jacobowitz CodeSourcery

<    1   2   3   4   5   6   >