Re: Wiki slowness

2012-04-13 Thread Daniel Jacobowitz
On Fri, Apr 13, 2012 at 4:04 AM, Richard Guenther richard.guent...@gmail.com wrote: Heh - that's what I do for years, too ;)  I suppose sth crashes on the server side when you save the page, so the communication is broken mid-way. I haven't looked at this in ages, but for GDB we had a problem

Re: [PATCH] eh_personality.cc: unwinding on ARM

2012-03-19 Thread Daniel Jacobowitz
On Mon, Mar 19, 2012 at 12:12 PM, Andrew Stubbs a...@codesourcery.com wrote: On 16/03/12 13:29, EXTERNAL Waechtler Peter (Fa. TCP, CM-AI/PJ-CF31) wrote: The CodeSourcery toolchain contains a fix like the following, please consider for adding it. Here's the full original patch with

Re: [ARM] EABI and the default to short enums

2012-02-27 Thread Daniel Jacobowitz
Sorry for being late to the party. On Wed, Feb 15, 2012 at 9:55 AM, Ian Lance Taylor i...@google.com wrote: Ouch, I did not know that the EABI left this open.  That seems like a bug, because it prevents code from being interoperable.  This is precisely the kind of thing an ABI should address.  

Re: ARM Linux EABI: unwinding through a segfault handler

2011-08-29 Thread Daniel Jacobowitz
On Mon, Aug 29, 2011 at 11:18 AM, Ken Werner ken.wer...@linaro.org wrote: On 08/25/2011 02:26 PM, Andrew Haley wrote: Throwing an exception through a segfault handler doesn't always work on ARM: the attached example fails on current gcc trunk. panda-9:~ $ g++ segv.cc -fnon-call-exceptions -g

Re: gcc-4.3-20110515 is now available

2011-05-15 Thread Daniel Jacobowitz
? -- Daniel Jacobowitz

Re: -Wdouble-promotion noise

2010-09-14 Thread Daniel Jacobowitz
to printf is going to convert it to a double and it will be printed as a double, so you're unexpectedly adding double-precision operations to the program. Does printf(%f, (double) f) suppress the warning? That's an explicit conversion instead of an implicit one. -- Daniel Jacobowitz CodeSourcery

Re: rationale for eliding modifications to string constants

2010-09-14 Thread Daniel Jacobowitz
is enabled. No, this is incorrect. The issue must be specific to modification of read-only data. -- Daniel Jacobowitz CodeSourcery

Re: Fw: Debugging plugins with gdb

2010-08-11 Thread Daniel Jacobowitz
. If it didn't, try a newer version of GDB. -- Daniel Jacobowitz CodeSourcery

Re: patch: honor volatile bitfield types

2010-06-23 Thread Daniel Jacobowitz
. Not the peripheral, just one register. e.g. you might read a control register into a struct of the same (32-bit) type, and then read multiple fields from the copied struct. -- Daniel Jacobowitz CodeSourcery

Re: Scheduling x86 dispatch windows

2010-06-11 Thread Daniel Jacobowitz
@ [length 4] -- assembler error 'insn has length 2' GCC can output length information, but it is never exact, and it is not in a form recognized by the assembler. On x86, I have no idea how this would work. -- Daniel Jacobowitz CodeSourcery

Re: Scheduling x86 dispatch windows

2010-06-10 Thread Daniel Jacobowitz
has expressed a similar opinion and/or tool in the past) is that there is a sane way to do this: put assertions in the assembler output and have the assembler validate them. On the other hand, I'm not going to argue that it's a lot of work. -- Daniel Jacobowitz CodeSourcery

Re: role of register C keyword?

2010-05-06 Thread Daniel Jacobowitz
this. It causes them to be live between statements in a machine register instead of always stored in stack slots. This might not be current information though. -- Daniel Jacobowitz CodeSourcery

Re: Code assistance with GCC

2010-04-21 Thread Daniel Jacobowitz
). -- Daniel Jacobowitz CodeSourcery

Re: Release novops attribute for external use?

2010-04-12 Thread Daniel Jacobowitz
-device memory, or any number of variants on that. -- Daniel Jacobowitz CodeSourcery

Unexpected output constraints

2010-04-01 Thread Daniel Jacobowitz
function_invariant_p and chaos ensues. Is this right? If so, is there somewhere that should assert if an operand's constraint is marked as an output, but not somewhere that the RTL allows modification of the operand? -- Daniel Jacobowitz CodeSourcery

Re: Unexpected output constraints

2010-04-01 Thread Daniel Jacobowitz
On Fri, Apr 02, 2010 at 12:06:28AM +0100, Bernd Schmidt wrote: On 04/01/2010 10:54 PM, Daniel Jacobowitz wrote: I'm debugging a Thumb-2 glibc build failure on trunk for arm-none-linux-gnueabi. I believe it's from Richard Earnshaw's 2010-02-01 patch for TLS patterns, which includes

Re: Unexpected output constraints

2010-04-01 Thread Daniel Jacobowitz
both outputs. Hrm. Yeah, those really should be two pseudos. I'll fix that. -- Daniel Jacobowitz CodeSourcery

Re: Use the wctype builtins functions

2010-03-12 Thread Daniel Jacobowitz
/msg0.html -- Daniel Jacobowitz CodeSourcery

Re: [RFH] A simple way to figure out the number of bits used by a long double

2010-02-26 Thread Daniel Jacobowitz
you ever answered Andreas's question - at least not in a way that I could understand. A size of what? The size of the *type* on x86 is 16; the size of the *data bits* is 10. But what cares about the size of the data bits rather than e.g. the size of the mantissa? -- Daniel Jacobowitz

Re: Gprof can account for less than 1/3 of execution time?!?!

2010-02-22 Thread Daniel Jacobowitz
for shared libraries. It will ignore profiling samples that lie outside the executable. And in this case, that includes _mcount (which is in libc.so.6). That's probably why. -- Daniel Jacobowitz CodeSourcery

Re: insn length attribute and code size optimization

2010-02-10 Thread Daniel Jacobowitz
what the registers are. -- Daniel Jacobowitz CodeSourcery

Re: insn length attribute and code size optimization

2010-02-03 Thread Daniel Jacobowitz
branch alternatives. I'm curious if anyone thinks there's a generic solution to this (that doesn't involve a complete instruction selection rewrite :-). -- Daniel Jacobowitz CodeSourcery

Re: Obsoleting IRIX 6.5, Solaris 7, and Tru64 UNIX V5.1

2010-01-30 Thread Daniel Jacobowitz
entirely. I don't think anyone's suggested that. o32 is the default ABI for 32-bit MIPS GNU/Linux targets which are still in wide use. -- Daniel Jacobowitz CodeSourcery

Re: [ARM] Neon / Ocaml question

2010-01-11 Thread Daniel Jacobowitz
it. -- Daniel Jacobowitz CodeSourcery

Re: PATCH: Support --enable-gold=both --with-linker=[bfd|gold]

2010-01-05 Thread Daniel Jacobowitz
shell scripts aren't a viable option for ld. Why make everyone write the wrapper script? Makes sense to me to have gcc decide. -- Daniel Jacobowitz CodeSourcery

Re: How to implement pattens with more that 30 alternatives

2009-12-22 Thread Daniel Jacobowitz
and TARGET_NEON. Now you need a minimum of three copies of the movmode pattern that are mostly the same. It'd be nice if there was a way to compose instruction patterns :-( -- Daniel Jacobowitz CodeSourcery

Re: How to implement pattens with more that 30 alternatives

2009-12-22 Thread Daniel Jacobowitz
working on for ARM cmpdi patterns, I ended up needing cmpdi_lhs_operand and cmpdi_rhs_operand predicates because Cirrus and VFP targets accept different constants. Automatically generating that would be a bit excessive though. -- Daniel Jacobowitz CodeSourcery

Re: How to implement pattens with more that 30 alternatives

2009-12-22 Thread Daniel Jacobowitz
testsuite. Interesting, I knew you had a lot of Cirrus patches but I didn't realize the state of the checked-in code was so bad. Is what's there useful or actively harmful? -- Daniel Jacobowitz CodeSourcery

Re: New RTL instruction for my port

2009-12-15 Thread Daniel Jacobowitz
unspec_volatile instead of unspec, but that may further inhibit optimization. -- Daniel Jacobowitz CodeSourcery

Re: detailed comparison of generated code size for GCC and other compilers

2009-12-14 Thread Daniel Jacobowitz
have heard of a commercial testsuite built on this principle :-) -- Daniel Jacobowitz CodeSourcery

Re: New RTL instruction for my port

2009-12-14 Thread Daniel Jacobowitz
, the solution seems to work, except in O0, where I get this error: This means whatever is calling gen_newrtl to create the insn is not checking operand predicates first. That's probably code you wrote too. -- Daniel Jacobowitz CodeSourcery

Re: New RTL instruction for my port

2009-12-14 Thread Daniel Jacobowitz
the cost then ? - Just say that an unspec has a higher cost? Are you really talking about rtx_costs? It sounds to me more like you want to change your scheduler. -- Daniel Jacobowitz CodeSourcery

Re: TLS support on ARM

2009-12-03 Thread Daniel Jacobowitz
mode. I don't believe that this is true. In what way is it not safe? -- Daniel Jacobowitz CodeSourcery

Re: TLS support on ARM

2009-12-03 Thread Daniel Jacobowitz
incomplete? No. It's been finished for two years or more. -- Daniel Jacobowitz CodeSourcery

Re: WTF?

2009-11-25 Thread Daniel Jacobowitz
On Wed, Nov 25, 2009 at 08:31:27PM +0100, Richard Guenther wrote: And patch doesn't have an option to ignore whitespace changes. Sure it does. -l (for loose, or --ignore-whitespace). QUILT_PATCH_OPTS for quilt. -- Daniel Jacobowitz CodeSourcery

Re: (C++) mangling vector types

2009-11-12 Thread Daniel Jacobowitz
) Switch to the new mangling I vote for 2. Does anyone know of another relevant compiler? What does it do? For instance, if someone can hand me a test case, I could check how ARM's compilers mangle it (or don't). -- Daniel Jacobowitz CodeSourcery

Re: -use-linker-plugin passed to ld

2009-10-26 Thread Daniel Jacobowitz
for this? The color that spells -fuse-linker-plugin seems better, in line with other options. How it's implemented, especially regarding having to ignore it in middle-end is unimportant wrt. spelling, IMVHO. I agree with H-P. -- Daniel Jacobowitz CodeSourcery

Re: LTO and the inlining of functions only called once.

2009-10-14 Thread Daniel Jacobowitz
are not considered to be called once, perhaps a visibility issue. We also should say what limit was reached on inlining hlprog. Maybe because of whatever did that cloning? -- Daniel Jacobowitz CodeSourcery

Re: LTO and the inlining of functions only called once.

2009-10-13 Thread Daniel Jacobowitz
use without (say) #pragma unroll. Not too limited, I'd say. I've seen a lot of developers willing to mutilate their critical loops to accomodate the compiler. -- Daniel Jacobowitz CodeSourcery

Re: Issues of the latest trunk with LTO merges

2009-10-12 Thread Daniel Jacobowitz
file so the linker won't produce undefined references when they are not actually used by lto1. Yes. Take a look at config/arm/arm-c.c, which does not go into libbackend.a. -- Daniel Jacobowitz CodeSourcery

Re: LTO and the inlining of functions only called once.

2009-10-10 Thread Daniel Jacobowitz
at compiler developers. I think we would benefit from more what is the compiler doing to my code options (producing note:); things like which functions were inlined, which loops unrolled. We do already have this for vectorization. -- Daniel Jacobowitz CodeSourcery

Re: LTO and LTO Plugin Reviewers

2009-10-07 Thread Daniel Jacobowitz
On Wed, Oct 07, 2009 at 04:29:29PM +0200, Basile STARYNKEVITCH wrote: I suppose LTO plugins means plugin dlopen-ed in lto-plugin/lto-symtab.c It sounds to me like this confusion comes from LTO plugins. Isn't it just LTO plugin? That is, a specific plugin? -- Daniel Jacobowitz CodeSourcery

Re: Headsup: Rogue or hacked account spamming via RT? re: [gnu.org #263454]

2009-09-30 Thread Daniel Jacobowitz
at rt.gnu.org via the web interface: Isn't this more likely the RT admins closing spam reports? -- Daniel Jacobowitz CodeSourcery

Re: armv4t

2009-09-21 Thread Daniel Jacobowitz
version of the gcc cross compiler for this cpu. If you can't build GCC for your target, I suggest you either use a help list for that purpose (gcc-help or the crosstool or buildroot lists), or find a pre-compiled ARM Linux toolchain. -- Daniel Jacobowitz CodeSourcery

Re: c-c++-common testsuite

2009-08-07 Thread Daniel Jacobowitz
? -- Daniel Jacobowitz CodeSourcery

Re: libiberty should be a shared library when cc1 has plugin enabled.

2009-07-09 Thread Daniel Jacobowitz
and get make_temp_file that way. -- Daniel Jacobowitz CodeSourcery

Re: libiberty should be a shared library when cc1 has plugin enabled.

2009-07-09 Thread Daniel Jacobowitz
platform supporting plugins should not suffer from this problem. If you're concerned about it, then build a subset. I've considered a separation of libiberty into replacements and utilities, anyway. -- Daniel Jacobowitz CodeSourcery

Re: libiberty should be a shared library when cc1 has plugin enabled.

2009-07-09 Thread Daniel Jacobowitz
On Thu, Jul 09, 2009 at 03:45:52PM +0200, Basile STARYNKEVITCH wrote: Daniel Jacobowitz wrote: On Thu, Jul 09, 2009 at 03:01:01PM +0200, Basile STARYNKEVITCH wrote: In simpler words, *.so have to be compiled with -fPIC, and libiberty is not compiled with -fPIC. We build a PIC libiberty

Re: avoiding gdb cc1plus PACK_EXPANSION_PATTERN(result) gives 'No symbol __extension__', error msg

2009-07-08 Thread Daniel Jacobowitz
to suppress warnings. Statement expressions, on the other hand, are right out. I can't see any practical way to teach GDB about that. -- Daniel Jacobowitz CodeSourcery

Re: VTA guality assessment: better than -O0 ;-)

2009-06-14 Thread Daniel Jacobowitz
the tracking inside of the prologue or for register variables, those that are stored into memory during the prologue and live in memory shouldn't be tracked outside of the prologue at -O0. I completely agree, this would make GDB more useful. -- Daniel Jacobowitz CodeSourcery

Re: i370 port

2009-06-05 Thread Daniel Jacobowitz
of mainline five years ago. A lot has changed since then. -- Daniel Jacobowitz CodeSourcery

Re: naked zero_extracts longer than a word.

2009-05-11 Thread Daniel Jacobowitz
: the 'qN' registers are two 'dN' registers concatenated, and GCC only knows about them once. -- Daniel Jacobowitz CodeSourcery

Re: Interest in integer auto-upcasting pass for normalization and optimization?

2009-05-10 Thread Daniel Jacobowitz
/2009-04/msg01860.html -- Daniel Jacobowitz CodeSourcery

Re: gcc-gdb compatibilty

2009-04-28 Thread Daniel Jacobowitz
GCC 4.x binaries. For instance, in that time we added location list support. -- Daniel Jacobowitz CodeSourcery

Re: Diagnostic Messaging Suggestion

2009-04-17 Thread Daniel Jacobowitz
On Fri, Apr 17, 2009 at 11:58:48AM -0600, Tom Tromey wrote: Chris Clang just prints the include stack information when anything Chris in the include stack differs between two consecutive Chris diagnostics. We could easily do that too. FWIW, I think this would be quite useful. -- Daniel

Re: GCC + libJIT instead of LLVM

2009-04-01 Thread Daniel Jacobowitz
that contradict each other and later give links to (or quote) the context? I am having troubling identifying the contradiction. Please, could you not do it on this list? A discussion about the differences between LLVM and libjit is wildly off-topic for GCC development. -- Daniel Jacobowitz CodeSourcery

Re: Fwd: Mips, -fpie and TLS management

2009-03-17 Thread Daniel Jacobowitz
, and you have a testcase, please report it in bugzilla. Thanks. -- Daniel Jacobowitz CodeSourcery

Re: Fwd: Mips, -fpie and TLS management

2009-03-17 Thread Daniel Jacobowitz
On Tue, Mar 17, 2009 at 04:03:45PM +0100, Joel Porquet wrote: 2009/3/17 Daniel Jacobowitz d...@false.org: On Tue, Mar 17, 2009 at 10:26:05AM +0100, Joel Porquet wrote: I don't understand how the runtime loader could know that! As far as I know, the tls model is not embedded in reloc

Re: Fwd: Mips, -fpie and TLS management

2009-03-17 Thread Daniel Jacobowitz
. This is how the uClibc and GLIBC dynamic loaders work and I believe it's described in Ulrich's paper. -- Daniel Jacobowitz CodeSourcery

Re: Fwd: Mips, -fpie and TLS management

2009-03-16 Thread Daniel Jacobowitz
On Mon, Mar 16, 2009 at 06:19:01PM +0100, Joel Porquet wrote: 2009/3/12 Daniel Jacobowitz d...@false.org: On Thu, Mar 12, 2009 at 02:02:36PM +0100, Joel Porquet wrote: Check what symbol is at, or near, 0x4003 + 22368.  It's probably the GOT plus a constant bias. It seems

Re: GCC 4.4.0 Status Report (2009-03-13)

2009-03-13 Thread Daniel Jacobowitz
if the SC *really* need us to not branch before the license change, as opposed to merely not /release/ until then? The topmost sentence should be unambiguous. Yes, the SC asked us not to branch. But: (And why, if so?) -- Daniel Jacobowitz CodeSourcery

Re: Fwd: Mips, -fpie and TLS management

2009-03-12 Thread Daniel Jacobowitz
-dynamic will return 9): we can see by the way that readelf is not able to get the symbol name. What do you think about this? This is a *module* relocation. In local dynamic the module is always the current DSO; it does not need a symbol. -- Daniel Jacobowitz CodeSourcery

Re: Fwd: Mips, -fpie and TLS management

2009-03-11 Thread Daniel Jacobowitz
than the INTERP entry in the program header? Yes. Symbol preemption is allowed for DSOs but not for PIEs or normal executables. That explains the different choice of model. -- Daniel Jacobowitz CodeSourcery

Re: Split Stacks proposal

2009-02-27 Thread Daniel Jacobowitz
obvious gaffes. class X { int x, *y; X() { y = x; } X(X obj) { x = obj.x; y = x; } } Memcpy that somewhere else and the internal pointer is invalid. -- Daniel Jacobowitz CodeSourcery

Re: ARM : code less efficient with gcc-trunk ?

2009-02-16 Thread Daniel Jacobowitz
in Bugzilla. -- Daniel Jacobowitz CodeSourcery

Re: gcc 3.3.6 and multilib

2009-02-09 Thread Daniel Jacobowitz
-EL -print-search-dirs? -- Daniel Jacobowitz CodeSourcery

Re: Constant folding and Constant propagation

2009-02-06 Thread Daniel Jacobowitz
supposed to implement my rtx_cost function. Since I don't seem to get a choice between a set 0xcb03 and a (plus 0xcafe 5), how can I tell the compiler the different costs? They may all have an outer code of SET, but you get the entire inner RTX. Search arm_rtx_costs_1 for CONST_INT:. -- Daniel

Re: ARM compiler generating never-used constant data structures

2009-02-05 Thread Daniel Jacobowitz
a 4.4 snapshot, please, file them in bugzilla. -- Daniel Jacobowitz CodeSourcery

Re: Plugin API Comments (was Re: GCC Plug-in Framework ready to port)

2009-02-04 Thread Daniel Jacobowitz
arguments will end up different for every plugin. -- Daniel Jacobowitz CodeSourcery

Re: marking ppc440 tests as unsupported

2009-01-12 Thread Daniel Jacobowitz
that rather than testing for a specific CPU model? This doesn't answer what you should do now, but I can explain the precedent: the only reason there is a predefine for 405 is so that the atomicity routines in libstdc++ know to avoid lwsync. -- Daniel Jacobowitz CodeSourcery

Re: Fwd: Mips, -fpie and TLS management

2008-11-24 Thread Daniel Jacobowitz
are prefixed by 8. Why is that? The offsets are biased; that's -32768, the lowest 16-bit signed offset. The bias is used to expand the addressable range of the thread pointer. Glad I could help! -- Daniel Jacobowitz CodeSourcery

Re: Fwd: Mips, -fpie and TLS management

2008-11-21 Thread Daniel Jacobowitz
, since it passes non-zero offsets to __tls_get_addr. -- Daniel Jacobowitz CodeSourcery

Re: Mips, -fpie and TLS management

2008-11-20 Thread Daniel Jacobowitz
tls variable in global dynamic model, tls_get_addr must receive the module index and the offset. Here is the second problem... That's because this is the local dynamic model. -- Daniel Jacobowitz CodeSourcery

Re: Apple, iPhone SDK NDA and GPLv3

2008-10-31 Thread Daniel Jacobowitz
On Fri, Oct 31, 2008 at 01:02:18PM -0400, Jack Howarth wrote: Can anyone explain if the recent change in Apple dropping their NDA will have any impact on the GPLv3 issue with Apple and FSF? Please discuss this on some more appropriate forum, not here. -- Daniel Jacobowitz CodeSourcery

Re: A question about DCE

2008-10-15 Thread Daniel Jacobowitz
and thus DCE deletes it. Don't focus on DCE. That's not the problem; the fact that there's no visible dependence is the problem. Can you make the next instruction have a use for r77 explicitly (CALL_INSN_FUNCTION_USAGE)? -- Daniel Jacobowitz CodeSourcery

Re: install path in libgcc Makefile.in

2008-10-11 Thread Daniel Jacobowitz
On Sun, Oct 12, 2008 at 03:13:47AM +0800, Zhang Le wrote: On 00:06 Sat 11 Oct , Daniel Jacobowitz wrote: If this is ok, I will post a little patch. That sounds fine, but the whole process is trouble. Would you explain why it is trouble? Thanks! For instance, libgcc and libstdc

Re: install path in libgcc Makefile.in

2008-10-10 Thread Daniel Jacobowitz
this is to build a cross compiler of the right version. If this is ok, I will post a little patch. That sounds fine, but the whole process is trouble. -- Daniel Jacobowitz CodeSourcery

Re: P.S. to: plungins and licensing

2008-09-29 Thread Daniel Jacobowitz
On Mon, Sep 29, 2008 at 03:10:28PM +0100, Joern Rennecke wrote: To give it a bit more legal bite There are no lawyers on this list (that I'm aware of). If you want to discuss this, please contact the FSF or SC directly instead. It does no good here. -- Daniel Jacobowitz CodeSourcery

Re: no symbol in current context problem when debug the program in gdb

2008-09-21 Thread Daniel Jacobowitz
. -- Daniel Jacobowitz CodeSourcery

Re: C/C++ FEs: Do we really need three char_type_nodes?

2008-09-21 Thread Daniel Jacobowitz
or overloaded functions? -- Daniel Jacobowitz CodeSourcery

Re: [PATCH] Use lwsync in PowerPC sync_* builtins

2008-09-04 Thread Daniel Jacobowitz
for the implementation of 'target sim'; it's really an independent project. -- Daniel Jacobowitz CodeSourcery

Re: obvious race condition in darwin/netbsd __enable_execute_stack due to caching pagesize/mask

2008-08-27 Thread Daniel Jacobowitz
code past a volatile operation. It's still not sufficient without a memory barrier. -- Daniel Jacobowitz CodeSourcery

Re: QUERY : ARM inline code in Thumb file?

2008-08-27 Thread Daniel Jacobowitz
the asm was entered. -- Daniel Jacobowitz CodeSourcery

Re: Problem reading corefiles on ARM

2008-08-06 Thread Daniel Jacobowitz
switching in a kernel application. */ IMO that shouldn't be written in C, then... -- Daniel Jacobowitz CodeSourcery

Re: frameworklet to assess the quality of debug information

2008-07-30 Thread Daniel Jacobowitz
(or with separate compilation, if some stuff is moved into a separate header). FWIW, I think this is a good approach. -- Daniel Jacobowitz CodeSourcery

Re: gcc will become the best optimizing x86 compiler

2008-07-28 Thread Daniel Jacobowitz
. That's incorrect; the glibc maintainers just don't care much for tarballs. You can find the tag in CVS from several months ago. -- Daniel Jacobowitz CodeSourcery

Re: Bootstrap failures on ToT, changes with no ChangeLog entry?

2008-07-24 Thread Daniel Jacobowitz
) | 1 line Changed paths: D /trunk Delete working copy of function-specific to be replaced with a copy of the mainline after it was checked in r138078 | meissner | 2008-07-23 07:06:42 -0400 (Wed, 23 Jul 2008) | 1 line Changed paths: A /trunk (from /trunk:138076) undo 138077 -- Daniel

Re: RFC: Adding non-PIC executable support to MIPS

2008-07-24 Thread Daniel Jacobowitz
On Thu, Jul 24, 2008 at 12:16:20PM -0400, Daniel Jacobowitz wrote: I have attached Let's all pretend I attached this glibc patch, instead of the one in my previous message, please. -- Daniel Jacobowitz CodeSourcery 2008-07-24 Mark Shinwell [EMAIL PROTECTED] Daniel Jacobowitz [EMAIL

Re: RFC: Adding non-PIC executable support to MIPS

2008-07-24 Thread Daniel Jacobowitz
, and thank you for looking at them - and for your patches; I'm really pretty happy with the combined work. -- Daniel Jacobowitz CodeSourcery

Re: mklibs on mips broken by gcc-4.3.x

2008-07-04 Thread Daniel Jacobowitz
show the same problem. Does anyone have any idea how this has broken, and how to work around / fix this in gcc or mklibs? You'll have to make mklibs ignore this symbol; the linker defines it. -- Daniel Jacobowitz CodeSourcery

Re: [whopr] Design/implementation alternatives for the driver and WPA

2008-07-04 Thread Daniel Jacobowitz
/thread/5cf669951cb2eef1 -- Daniel Jacobowitz CodeSourcery

Re: RFC: Adding non-PIC executable support to MIPS

2008-07-02 Thread Daniel Jacobowitz
responsibilities so that I can spend more time on the ones I care most about. Anyone else want to be binutils release manager?] -- Daniel Jacobowitz CodeSourcery

Re: RFC: Adding non-PIC executable support to MIPS

2008-07-02 Thread Daniel Jacobowitz
ABI-preserving, the PLT entries still work for MIPS I and still have the same runtime cost when not resolving. I like it - thanks! I'm not worried about making people upgrade objdump, either. -- Daniel Jacobowitz CodeSourcery

Re: trivial error in *.texi files.

2008-06-30 Thread Daniel Jacobowitz
; the menu should be before the @include somewhere. -- Daniel Jacobowitz CodeSourcery

Re: RFC: Adding non-PIC executable support to MIPS

2008-06-30 Thread Daniel Jacobowitz
supplement. Supplemental to a somewhat hypothetical document, but there you go... -- Daniel Jacobowitz CodeSourcery

Re: CFA expression failure

2008-06-25 Thread Daniel Jacobowitz
. That's true at 0xe; at 0xc the saved location of %ebp is harder to describe. But that won't explain your crashes. The debug info looks unusual, but correct. -- Daniel Jacobowitz CodeSourcery

Re: CFA expression failure

2008-06-25 Thread Daniel Jacobowitz
order-sensitive. -- Daniel Jacobowitz CodeSourcery

Re: Should we remove java from the default bootstrap languages?

2008-06-22 Thread Daniel Jacobowitz
again, at least for native. That can parallelize tests as fine-grained as you wish, and present consistent logs. -- Daniel Jacobowitz CodeSourcery

Re: 4.3.0 and 4.3.1 don't build startfiles (crtXXX.o files)

2008-06-07 Thread Daniel Jacobowitz
file for your triplet. -- Daniel Jacobowitz CodeSourcery

Re: bit_size_type - a data type?

2008-05-12 Thread Daniel Jacobowitz
. CodeSourcery does this all the time. -- Daniel Jacobowitz CodeSourcery

  1   2   3   4   5   6   >