Re: [ARM] Neon / Ocaml question

2010-01-11 Thread Daniel Jacobowitz
can also ignore it. -- Daniel Jacobowitz CodeSourcery

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

2010-01-30 Thread Daniel Jacobowitz
port for o32 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: insn length attribute and code size optimization

2010-02-03 Thread Daniel Jacobowitz
tion to select alternatives; (C) branch shortening to determine 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: insn length attribute and code size optimization

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

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

2010-02-22 Thread Daniel Jacobowitz
any support 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: [RFH] A simple way to figure out the number of bits used by a long double

2010-02-26 Thread Daniel Jacobowitz
for now at least. Too bad. Despite all that exchange, I don't think 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 d

Re: Use the wctype builtins functions

2010-03-12 Thread Daniel Jacobowitz
;s a prototype: http://sourceware.org/ml/gdb-patches/2006-10/msg0.html -- Daniel Jacobowitz CodeSourcery

Unexpected output constraints

2010-04-01 Thread Daniel Jacobowitz
ICE trying to emit (set (const) (reg)). It seems to me that the problem is marking a register in the RHS of a set as an output constraint. The reg becomes 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 pa

Re: Unexpected output constraints

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

Re: Release novops attribute for external use?

2010-04-12 Thread Daniel Jacobowitz
d are "externally visible". Then you can think about it as "does not alias any non-device memory", or any number of variants on that. -- Daniel Jacobowitz CodeSourcery

Re: Code assistance with GCC

2010-04-21 Thread Daniel Jacobowitz
just a parser and a syntax tree). -- Daniel Jacobowitz CodeSourcery

Re: install path in libgcc Makefile.in

2008-10-10 Thread Daniel Jacobowitz
work. The first step in cross building a native compiler like 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: 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? Tha

Re: A question about DCE

2008-10-15 Thread Daniel Jacobowitz
that r77 is not used in it's function after this instruction > 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: 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: Mips, -fpie and TLS management

2008-11-20 Thread Daniel Jacobowitz
R_MIPS_TLS_DTPREL type with the > R_MIPS_TLS_DTPMOD, since for each 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: Fwd: Mips, -fpie and TLS management

2008-11-21 Thread Daniel Jacobowitz
tant. This is all very interesting, but you didn't answer my question: is this causing some problem, or just confusing? These are all intended optimizations. -- Daniel Jacobowitz CodeSourcery

Re: Fwd: Mips, -fpie and TLS management

2008-11-21 Thread Daniel Jacobowitz
r four words. The second and fourth words will be the offsets. This is a global dynamic sequence, since it passes non-zero offsets to __tls_get_addr. -- Daniel Jacobowitz CodeSourcery

Re: Fwd: Mips, -fpie and TLS management

2008-11-24 Thread Daniel Jacobowitz
nop > 5ffe14bc: 8000sdc3$31,-32768(ra) > > We can see that the offsets 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: marking ppc440 tests as unsupported

2009-01-12 Thread Daniel Jacobowitz
? And the tests use > 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: Serious code generation/optimisation bug (I think)

2009-01-27 Thread Daniel Jacobowitz
nding warning would be a win? "warning: ignored NULL check because pointer has already been dereferenced"? -- Daniel Jacobowitz CodeSourcery

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

2009-02-04 Thread Daniel Jacobowitz
centralized, and (B) standardized. Otherwise the right way to pass arguments will end up different for every plugin. -- Daniel Jacobowitz CodeSourcery

Re: ARM compiler generating never-used constant data structures

2009-02-05 Thread Daniel Jacobowitz
t cases where 4.0.2 gives smaller code with -Os than a 4.4 snapshot, please, file them in bugzilla. -- Daniel Jacobowitz CodeSourcery

Re: Constant folding and Constant propagation

2009-02-06 Thread Daniel Jacobowitz
nner RTX. Search arm_rtx_costs_1 for "CONST_INT:". -- Daniel Jacobowitz CodeSourcery

Re: gcc 3.3.6 and multilib

2009-02-09 Thread Daniel Jacobowitz
. Did you try mips-unknown-linux-gcc -EL -print-search-dirs? -- Daniel Jacobowitz CodeSourcery

Re: Does gcc conform to C++ ABI?

2009-02-13 Thread Daniel Jacobowitz
s a static variable, then > multiple translation units require access to the static variable. That > does not imply that the static variable has external linkage. Does this mean that if you compiled some of those TUs with GCC, and some with icc, they might legitimately access different copies of the static variable? Seems odd. -- Daniel Jacobowitz CodeSourcery

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

2009-02-16 Thread Daniel Jacobowitz
* slower, please report it as a bug in Bugzilla. -- Daniel Jacobowitz CodeSourcery

Re: Split Stacks proposal

2009-02-27 Thread Daniel Jacobowitz
haven't written C++ in a while, so forgive any 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: Fwd: Mips, -fpie and TLS management

2009-03-11 Thread Daniel Jacobowitz
32768==0x8000. Are you sure both of those code sequences are calling __tls_get_addr? If so, compare the arguments they passed. > Last question, is there a difference between DSO and PIE objects other > 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: Fwd: Mips, -fpie and TLS management

2009-03-12 Thread Daniel Jacobowitz
f the symbol. This > name then allows to look up the symbol. Unfortunately, in the case of > local-dynamic, ELF_R_SYM will return 0 which is not correct (the same > for global-dynamic will return 9): we can see by the way that readelf > is not able to get the symbol name. What do you thi

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

2009-03-13 Thread Daniel Jacobowitz
for > > [...] > > > Can anyone clarify 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-16 Thread Daniel Jacobowitz
On Mon, Mar 16, 2009 at 06:19:01PM +0100, Joel Porquet wrote: > 2009/3/12 Daniel Jacobowitz : > > 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 c

Re: Fwd: Mips, -fpie and TLS management

2009-03-17 Thread Daniel Jacobowitz
hile(*str) > *tty = *str++; > } If you believe there is a bug, 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 : > > 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 n

Re: Fwd: Mips, -fpie and TLS management

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

Re: GCC + libJIT instead of LLVM

2009-04-01 Thread Daniel Jacobowitz
nces 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: Diagnostic Messaging Suggestion

2009-04-17 Thread Daniel Jacobowitz
is would be quite useful. -- Daniel Jacobowitz CodeSourcery

Re: gcc-gdb compatibilty

2009-04-28 Thread Daniel Jacobowitz
and/or be useless with most GCC 4.x binaries. For instance, in that time we added location list support. -- Daniel Jacobowitz CodeSourcery

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

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

Re: naked zero_extracts longer than a word.

2009-05-11 Thread Daniel Jacobowitz
does not), we'd have a problem: the 'qN' registers are two 'dN' registers concatenated, and GCC only knows about them once. -- Daniel Jacobowitz CodeSourcery

Re: i370 port

2009-06-05 Thread Daniel Jacobowitz
n it may appear from the release date, since it branched off of mainline five years ago. A lot has changed since then. -- Daniel Jacobowitz CodeSourcery

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

2009-06-14 Thread Daniel Jacobowitz
just do 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: avoiding gdb cc1plus PACK_EXPANSION_PATTERN(result) gives 'No symbol "__extension__"', error msg

2009-07-08 Thread Daniel Jacobowitz
define __extension__ (gdb) p __extension__ 1 $1 = 1 That's all that's necessary; it's used 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: libiberty should be a shared library when cc1 has plugin enabled.

2009-07-09 Thread Daniel Jacobowitz
ur plugin 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
ibiberty on any 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 -

Re: role of "register" C keyword?

2010-05-06 Thread Daniel Jacobowitz
without optimization. There's some unique GDB tests that use 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: Scheduling x86 dispatch windows

2010-06-10 Thread Daniel Jacobowitz
g to do. FWIW, my opinion (and I think Jakub 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: Scheduling x86 dispatch windows

2010-06-11 Thread Daniel Jacobowitz
out assertions, not directives. Something like this: mov r0, r1 @ [length 2] add ip, lr, ip @ [length 4] mov r0, r1 @ [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: patch: honor volatile bitfield types

2010-06-23 Thread Daniel Jacobowitz
same as before, I would think. 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: Fw: Debugging plugins with gdb

2010-08-11 Thread Daniel Jacobowitz
want to make the breakpoint pending? If it did, say yes. If it didn't, try a newer version of GDB. -- Daniel Jacobowitz CodeSourcery

Re: -Wdouble-promotion & noise

2010-09-14 Thread Daniel Jacobowitz
ant to be, or simply a temporary > shortcoming? Have i missed an obvious kludge? My two cents, but that looks exactly right to me. Passing the float 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 t

Re: rationale for eliding modifications to string constants

2010-09-14 Thread Daniel Jacobowitz
t; is deleted as dead code when optimization is enabled. No, this is incorrect. The issue must be specific to modification of read-only data. -- Daniel Jacobowitz CodeSourcery

Re: RFC: Add zlib source to src CVS resposity

2010-11-01 Thread Daniel Jacobowitz
in general, dislikes duplicated source code in packages, but I don't know if they care when the duplicated bits are non-GNU. There were definitely GDB developers that disliked bundling expat, so perhaps you can find the reasons in the archives. -- Daniel Jacobowitz CodeSourcery

Re: branch_target_register_class - receipt for a crash

2006-01-22 Thread Daniel Jacobowitz
have seen it initialized to hook_int_void_no_regs. - This comes from TARGET_BRANCH_TARGET_REGISTER_CLASS. - SH redefines that to sh_target_reg_class. -- Daniel Jacobowitz CodeSourcery

Re: [CFARM] Automatic bootstrap & check of each svn commit on the GCC Compile Farm

2006-01-23 Thread Daniel Jacobowitz
t one posted. Optionally, by some change other than the total number of PASS. -- Daniel Jacobowitz CodeSourcery

Re: /gcc/testsuite disappears when recompiling

2006-01-25 Thread Daniel Jacobowitz
; anymore. I will have to modify all the paths to /stage1-gcc? If you run all-stage1, or stage1-start, then the top level will put the stage1 gcc directory back into place. There's a separate gcc subdirectory for every stage; the "current" stage will be named "gcc", and all the others will be named "stageFOO-gcc". -- Daniel Jacobowitz CodeSourcery

Re: Reconsidering gcjx

2006-01-27 Thread Daniel Jacobowitz
lumn numbers? Not today, no. -- Daniel Jacobowitz CodeSourcery

Re: Reconsidering gcjx

2006-01-27 Thread Daniel Jacobowitz
issues with not just the language it was written in, but what specific version of the compiler was used to bootstrap. ECJ, hopefully, will be less problematic. - People already marginalize gcj because libjava takes so bloody long to build. If ECJ can be noticably faster than GCJ is, this might have the opposite effect. -- Daniel Jacobowitz CodeSourcery

Toplevel bootstrap only - where are we?

2006-01-30 Thread Daniel Jacobowitz
working with old-style GCC subdirectory bootstrap? What blockers are there, besides retraining our fingers? -- Daniel Jacobowitz CodeSourcery

Re: How to create libgcc_eh.a for mips-elf-gcc?

2006-02-09 Thread Daniel Jacobowitz
build glibc. For one thing, you can't do it with a mips-elf targeted compiler; glibc builds for mips-linux, not for mips-elf. -- Daniel Jacobowitz CodeSourcery

Re: gcc and attribute __packed__

2006-02-10 Thread Daniel Jacobowitz
t; u_int16_t b; > }; The size of this type is four on that ABI. It doesn't matter if you pack a structure containing this; that eliminates padding in the structure, but doesn't change the type or size of the union. -- Daniel Jacobowitz CodeSourcery

Re: software floating point host triplet?

2006-02-20 Thread Daniel Jacobowitz
ver I'd > like to integrate this in a way that would benefit everybody. Have you tried --with-float=soft, which works on several different architectures already? -- Daniel Jacobowitz CodeSourcery

Re: Toplevel bootstrap patches cause bootstrap breakage

2006-02-21 Thread Daniel Jacobowitz
ks with prev-gcc/xgcc which does not exist because the bootstrap is > in the process of installing it. I'm not quite sure what you mean by "installing in prev-gcc"; could you show me the tail end of a log? -- Daniel Jacobowitz CodeSourcery

Re: Toplevel bootstrap patches cause bootstrap breakage

2006-02-21 Thread Daniel Jacobowitz
nt of install-headers-tar with no dependencies to do this, or find some other way entirely. -- Daniel Jacobowitz CodeSourcery

Re: Toplevel bootstrap patches cause bootstrap breakage

2006-02-21 Thread Daniel Jacobowitz
On Tue, Feb 21, 2006 at 02:16:27PM -0500, Daniel Jacobowitz wrote: > On Tue, Feb 21, 2006 at 01:50:47PM -0500, David Edelsohn wrote: > > if [ -d ../prev-gcc ]; then \ > > cd ../prev-gcc && \ > > make install-headers-tar DESTDIR=`pwd`/../gcc/ \ > > libsubd

Re: question about pic and relocation

2006-02-22 Thread Daniel Jacobowitz
ps-elf-readelf -r fun.so That's not a shared object, no matter what you call it. You have to assemble and then link; please let GCC do the linking, it knows how to invoke the linker properly for each platform. -- Daniel Jacobowitz CodeSourcery

Re: question about pic and relocation

2006-02-23 Thread Daniel Jacobowitz
appens that shared libraries are linked as 0x5ffe or thereabouts. It's historical. > Why? And the symble 'b' is of absolute type(*A*)? I don't know; not enough information. -- Daniel Jacobowitz CodeSourcery

Re: can't create crtbegin.o: Invalid bfd target

2006-02-26 Thread Daniel Jacobowitz
t; ld=/home/smj/local/bin/mytarget-linux-ld Then this is the wrong list; your binutils port is broken. -- Daniel Jacobowitz CodeSourcery

Re: Bootstrap failure on trunk: x86_64-linux-gnu

2006-02-28 Thread Daniel Jacobowitz
em with non-canonical bounds if there were > no way to get a value into an object which is outside the > bounds. But if we can get values into the object which are outside > those bounds, then either the bounds are incorrect or the program > is invalid. Ignoring 'Valid, whic

Re: iWMMXt/Linux EABI toolchain

2006-02-28 Thread Daniel Jacobowitz
t sure where to look. Try just using arm-none-linux-gnueabi and --with-cpu=iwmmxt --with-arch=iwmmxt; you almost certainly do not want --with-abi=iwmmxt. The error you gave suggests that you didn't modify something properly to handle the xscale-linux-gnueabi target, but arm would work just fine. -- Daniel Jacobowitz CodeSourcery

Re: iWMMXt/Linux EABI toolchain

2006-02-28 Thread Daniel Jacobowitz
about being able to run old binaries. So is using abi=iwmmxt really > not what I want? A really bad idea? Absolutely. You want the AAPCS, not Intel's pre-AAPCS ABI. -- Daniel Jacobowitz CodeSourcery

Re: iWMMXt/Linux EABI toolchain

2006-03-01 Thread Daniel Jacobowitz
t targets > xscale-iwmmxt-linux-gnueabi specifically or do you just consider it > unnecessary > effort? I don't think there's any point to the xscale-* triplets nowadays. -- Daniel Jacobowitz CodeSourcery

Re: iWMMXt/Linux EABI toolchain

2006-03-01 Thread Daniel Jacobowitz
I'd be better off using iwmmxt-*? The comment does not apply to an EABI toolchain, which you are building. And comments about multilibs don't apply to anything using --with-cpu; if you're doing that you ought to be using --disable-multilib anyway. -- Daniel Jacobowitz CodeSourcery

Re: GCC 4.1.0 Released

2006-03-01 Thread Daniel Jacobowitz
may issue the warning > tar: pax_global_header: Unknown file type 'g', extracted as normal file > and/or silently create spurious files named 'pax_global_header'. > These are artifacts reflecting the fact that the tarballs were > created with git. The tarballs most certainly weren't created with git. -- Daniel Jacobowitz CodeSourcery

Re: GCC 4.1.0 Released

2006-03-01 Thread Daniel Jacobowitz
On Wed, Mar 01, 2006 at 10:10:39AM -0800, Dan Kegel wrote: > On 3/1/06, Daniel Jacobowitz <[EMAIL PROTECTED]> wrote: > > > > 1. GNU TAR 1.14 is required to unpack the source releases. Other > > > > versions of tar are likely to report errors or silently unpa

Re: iWMMXt/Linux EABI toolchain

2006-03-01 Thread Daniel Jacobowitz
On Wed, Mar 01, 2006 at 06:20:53PM +, Steven Newbury wrote: > OK, thank-you. I'll target "arm-iwmmxt-linux-gnueabi" with --with-cpu= etc > and > --disable-multilib. The vendor string is for my build scripts and also will > help differentiate the toolchain, is th

Re: iWMMXt/Linux EABI toolchain

2006-03-01 Thread Daniel Jacobowitz
? Please either take this to the crossgcc list or look at how crosstool works. This is a FAQ for building Linux cross-compilers. -- Daniel Jacobowitz CodeSourcery

Re: g++ 4.1.0/4.2.x, x86/x86-64, segfaults due to bogus SSE alignments

2006-03-10 Thread Daniel Jacobowitz
is. That's why we prefer bug reports with testcases. -- Daniel Jacobowitz CodeSourcery

Re: autogen -T ../../trunk/fixincludes/check.tpl ../../trunk/fixincludes/inclhack.def

2006-03-11 Thread Daniel Jacobowitz
have to give us a hint which part failed him, for me to know > just what went wrong. It's not a generated file. Autogen is run during the fixincludes testsuite. -- Daniel Jacobowitz CodeSourcery

Re: GCC & libtool - plans for moving to libtool 1.5?

2006-03-17 Thread Daniel Jacobowitz
libtool 1.5.22. This is still blocked on the move to a newer autoconf in all subdirectories. Or, on someone figuring out whether we can migrate some subdirectories to a newer libtool without breaking others. -- Daniel Jacobowitz CodeSourcery

Re: Core dump in application on SuSE9 zLinux

2006-03-22 Thread Daniel Jacobowitz
nux (SP3) is failing on SuSE9 zLinux (SP2). Whatever it is, it's probably not a GCC issue; this is not the appropriate list to ask questions about multithreading. -- Daniel Jacobowitz CodeSourcery

Re: failed gcc-4.0.3-1(Debian) bootstrap with ARM VFP and binutils-2.16.1cvs20060117-1

2006-03-25 Thread Daniel Jacobowitz
> /usr/src/Debian/gcc-4.0-4.0.3-1/build/gcc/crtendS.o > /usr/arm-vfp-linux-gnu/lib/crtn.o > /usr/arm-vfp-linux-gnu/bin/ld: ERROR: > /usr/src/Debian/gcc-4.0-4.0.3-1/build/gcc/crtbeginS.o uses VFP instructions, > whereas ./libgcc_s.so.1.tmp does not Looks like you're

Re: GCC 4.1.0 build error (as doesn't like code produced by xgcc)

2006-03-29 Thread Daniel Jacobowitz
> `.LCFI71' instead. Is this a bug in binutils or gcc? Or am I doing > something wrong? It's just a quirk of the error message. The relocation has been made relative to the section symbol, which has the same name as the containing section. -- Daniel Jacobowitz CodeSourcery

Re: R_PPC_REL24 overflow

2006-03-29 Thread Daniel Jacobowitz
help clarify what is / should be going on here? All fine so far. Then, ld should resolve the branch to point to a PLT entry - you want to figure out why that isn't happening and the branch is being output into the shared library. -- Daniel Jacobowitz CodeSourcery

Re: GCC 4.1.0 doesn't generate DWARF 2 output for function arguments?

2006-04-03 Thread Daniel Jacobowitz
ith -O0. On x86, where they're on the stack on entry, we could probably have done better even with optimization. -- Daniel Jacobowitz CodeSourcery

Re: GCC 4.1.0 doesn't generate DWARF 2 output for function arguments?

2006-04-03 Thread Daniel Jacobowitz
in the GCC bug tracking system, if there is not already an equivalent bug. -- Daniel Jacobowitz CodeSourcery

Re: Update of mirrors web page

2006-04-08 Thread Daniel Jacobowitz
t; several sub-directories (infrastructure, libstd++, etc). Those with a > "weird structure" have a sub-dir for every release, and are missing > some of the other dirs (e.g. infrastructure). That means they mirror from ftp.gnu.org, rather than gcc.gnu.org. -- Daniel Jacobowitz CodeSourcery

Re: Repository Write Access: A privilege or a right?

2006-04-09 Thread Daniel Jacobowitz
derstanding. That doesn't conflict with what Roger said though: while the copyright of anything we put in a repository branch is deliberately assigned to the FSF, that's not the same as contributing it to the FSF GCC, which would require e.g. testing it on HEAD and getting someone t

Re: Updating a ssh key

2006-04-10 Thread Daniel Jacobowitz
erseers@ to install a new key for you. -- Daniel Jacobowitz CodeSourcery

Re: Toolchain relocation

2006-04-13 Thread Daniel Jacobowitz
ppear to be checking > something in the old location before reading from the new path. How did you configure the toolchain? Which was the configured install directory and which was the relocated install directory? -- Daniel Jacobowitz CodeSourcery

Re: Toolchain relocation

2006-04-16 Thread Daniel Jacobowitz
GW-hosted system, for comparison. Does that work better? If so, it's likely something which does not handle drive letters. make_relative_prefix may need to be taught something about them. -- Daniel Jacobowitz CodeSourcery

Re: optimizing away parts of macros?

2006-04-17 Thread Daniel Jacobowitz
with 4.0.2? Is there a workaround? Should I upgrade? This is not a useful bug report, sorry. Please take a look at the bug reporting instructions on gcc.gnu.org. -- Daniel Jacobowitz CodeSourcery

Re: Vector types and type conversions

2006-04-19 Thread Daniel Jacobowitz
from scalar float to int, > >where a conversion is performed.a > > Yes, that's the way C is defined The C standard doesn't have vectors in it, so this hardly makes sense as a response. He's not talking about arrays. -- Daniel Jacobowitz CodeSourcery

Re: Idioms for byteswapping and unaligned memory access

2006-04-20 Thread Daniel Jacobowitz
s working on, on x86, by forcing BFD to do unaligned loads instead of bytewise loads, but I never found a clean way to do it automatically. -- Daniel Jacobowitz CodeSourcery

Re: Crossed-Native Builds, Toolchain Relocation and MinGW

2006-04-26 Thread Daniel Jacobowitz
the headers > to $PREFIX/$TARGET, do the crossed-native build, install > the compiler and then bundle this installation up to > create a relocatable toolchain. This was the whole point > of the article: If you look at HEAD, you'll find a new --with-build-sysroot option. Does that help? We added it for some very similar configurations... -- Daniel Jacobowitz CodeSourcery

Re: libstdc++ in a combined tree

2006-04-28 Thread Daniel Jacobowitz
ecause we arrange to build libstdc++-v3 before building newlib. That we require the configure option is somewhat lame. -- Daniel Jacobowitz CodeSourcery

Re: libstdc++ in a combined tree

2006-04-28 Thread Daniel Jacobowitz
ess need to test it - just like you're doing. There's just too many possible configurations. -- Daniel Jacobowitz CodeSourcery

Re: ARM gcc 4.1 optimization bug.

2006-04-30 Thread Daniel Jacobowitz
report, please use the bug reporting system. Please see: http://gcc.gnu.org/bugs.html -- Daniel Jacobowitz CodeSourcery

<    1   2   3   4   5   6   7   >