[Bug bootstrap/44433] [meta-bug] --enable-build-with-cxx issues

2010-07-11 Thread dougsemler at gmail dot com
--- Comment #3 from dougsemler at gmail dot com 2010-07-11 15:11 --- Does anyone know if pr43538 affects this as well (cxx flags fir target inheriting from cxxflags on Linux targets)? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44433

[Bug testsuite/44525] New: Profiling assumes host directory structure

2010-06-13 Thread dougsemler at gmail dot com
Component: testsuite AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: dougsemler at gmail dot com http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44525

[Bug c++/44172] Compiling never ends

2010-05-17 Thread dougsemler at gmail dot com
--- Comment #1 from dougsemler at gmail dot com 2010-05-17 17:46 --- This is the offender: Node(const T v,NodeT* Tparent=NULL) {_parent=Tparent;_data=v;} It looks like you have transposed the * (it should be the following, right? Node(const T v,NodeT* Tparent=NULL) {_parent=Tparent

[Bug testsuite/44159] New: CPU options cause testsuite failures

2010-05-16 Thread dougsemler at gmail dot com
AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: dougsemler at gmail dot com GCC target triplet: x86_64-w64-mingw32 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44159

[Bug testsuite/44159] CPU options cause testsuite failures

2010-05-16 Thread dougsemler at gmail dot com
--- Comment #1 from dougsemler at gmail dot com 2010-05-16 14:23 --- Created an attachment (id=20672) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=20672action=view) Assembly that shows unsupported registry saves This assembly is made from: /opt/build/x86_64-pc-linux/x86_64-w64

[Bug target/44161] New: __attribute__((__target__)) resets pic flag causing spurious warnings

2010-05-16 Thread dougsemler at gmail dot com
: normal Priority: P3 Component: target AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: dougsemler at gmail dot com GCC target triplet: x86_64-w64-mingw32 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44161

[Bug target/44161] __attribute__((__target__)) resets pic flag causing spurious warnings

2010-05-16 Thread dougsemler at gmail dot com
--- Comment #1 from dougsemler at gmail dot com 2010-05-16 17:40 --- Created an attachment (id=20673) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=20673action=view) Test failure example Testsuite i386.exp=func-spec*.c Shows test failures in -4 and -8 due to excess warnings

[Bug target/44161] __attribute__((__target__)) resets pic flag causing spurious warnings

2010-05-16 Thread dougsemler at gmail dot com
--- Comment #2 from dougsemler at gmail dot com 2010-05-16 17:42 --- Created an attachment (id=20674) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=20674action=view) Test success example Runtest with the warning removed from config/i386/cygming.h Shows that the tests will succeed

[Bug target/44139] Exporting emutls symbols from a DLL broken on w32 targets

2010-05-15 Thread dougsemler at gmail dot com
--- Comment #8 from dougsemler at gmail dot com 2010-05-15 13:03 --- Done cf. http://sourceware.org/bugzilla/show_bug.cgi?id=11603 (note to self, pay more attention to specs and less attention to de facto behavior of toolsets ;-)) -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id

[Bug target/44139] New: Exporting emutls symbols from a DLL broken on w32 targets

2010-05-14 Thread dougsemler at gmail dot com
: normal Priority: P3 Component: target AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: dougsemler at gmail dot com GCC target triplet: i686-pc-mingw32 x86_64-*-mingw32 i686-pc-cygwin http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44139

[Bug libstdc++/40974] cannot build gcc-4.4.1: fenv_t has not been declared

2010-05-14 Thread dougsemler at gmail dot com
--- Comment #28 from dougsemler at gmail dot com 2010-05-14 15:49 --- I tried adding -nostdinc++ via --enable-cxx-flags configure option, but those aren't passed through to the pch compilation...and I'm not sure that it's appropriate to pass all the --enable-cxx-flags to the pch

[Bug c++/44045] initialization of array of shared_ptr's with initializer list causes compiler segfault

2010-05-10 Thread dougsemler at gmail dot com
--- Comment #10 from dougsemler at gmail dot com 2010-05-10 17:18 --- Well, is it really invalid code with -std=c++0x? The virutal destructor seems to be causing the issue. With gcc 4.4.3 (after changing virtual ~base() to virtual void func()): $ g++ gcc_bug.cc gcc_bug.cc

[Bug c++/44045] initialization of array of shared_ptr's with initializer list causes compiler segfault

2010-05-09 Thread dougsemler at gmail dot com
--- Comment #7 from dougsemler at gmail dot com 2010-05-09 16:24 --- Reduced test case: # 1 gcc_bug2.cc # 1 built-in # 1 command-line # 1 gcc_bug2.cc struct base { virtual ~base() { } }; int main() { base ptr_array[1]; ptr_array = { base() }; } -- http://gcc.gnu.org/bugzilla

[Bug c/37231] GCC does not compile code with label statements that are followed by a declaration

2010-05-09 Thread dougsemler at gmail dot com
--- Comment #10 from dougsemler at gmail dot com 2010-05-09 23:25 --- (In reply to comment #9) A good example of seemingly normal code is following: switch (whatever) { case 1: int i=0; i

[Bug target/40125] libgcc_s DLL installed in wrong directory in cross toolchain

2010-04-16 Thread dougsemler at gmail dot com
--- Comment #3 from dougsemler at gmail dot com 2010-04-16 14:53 --- Right now in a cross environment, the target libraries, when built as DLLs, are also installed in the host's bindir, due to the -bindir flag now being passed to libtool. While this may be appropriate in a native

[Bug ada/38493] Ada compiler does not work with --exec-prefix configuration

2010-04-15 Thread dougsemler at gmail dot com
--- Comment #2 from dougsemler at gmail dot com 2010-04-15 12:53 --- *** Bug 43749 has been marked as a duplicate of this bug. *** -- dougsemler at gmail dot com changed: What|Removed |Added

[Bug ada/43749] installed gnat cannot find installed libraries when exec-prefix != prefix

2010-04-15 Thread dougsemler at gmail dot com
--- Comment #3 from dougsemler at gmail dot com 2010-04-15 12:53 --- You're right. When I searched for it, it reported no bugs found (sigh). And I see my solution is exactly the same as 38493. *** This bug has been marked as a duplicate of 38493 *** -- dougsemler at gmail dot com

[Bug ada/43749] New: installed gnat cannot find installed libraries when exec-prefix != prefix

2010-04-13 Thread dougsemler at gmail dot com
ReportedBy: dougsemler at gmail dot com GCC host triplet: x86_64-unknown-linux-gnu GCC target triplet: x86_64-unknown-linux-gnu http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43749

[Bug ada/43731] New: Missing ada multilib on i686-w64-mingw32 target

2010-04-12 Thread dougsemler at gmail dot com
Status: UNCONFIRMED Severity: normal Priority: P3 Component: ada AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: dougsemler at gmail dot com GCC build triplet: x86_64-unknown-linux-gnu GCC host triplet: x86_64-unknown-linux-gnu

[Bug c/43736] New: Invalid uninitialized variable warning at -O3 -Wall

2010-04-12 Thread dougsemler at gmail dot com
Product: gcc Version: 4.4.3 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: dougsemler at gmail dot com GCC target triplet: x86_64-unknown-linux-gnu http

[Bug middle-end/43736] Invalid uninitialized variable warning at -O3 -Wall

2010-04-12 Thread dougsemler at gmail dot com
--- Comment #2 from dougsemler at gmail dot com 2010-04-12 20:44 --- FWIW: I realized that I have been playing around with newer ppl and the compiler is dynamically linking against ppl 0.11 and gmp 5 rather than ppl 0.10 and gmp 4. When I get rid of the experimental libs in my link

[Bug target/43538] New: config/mt-gnu CXXFLAGS_FOR_TARGET

2010-03-26 Thread dougsemler at gmail dot com
-gnu CXXFLAGS_FOR_TARGET Product: gcc Version: 4.5.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: target AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: dougsemler at gmail dot com GCC build

[Bug libfortran/41482] New: ICE in libgfortran arm thumb multilib compile

2009-09-27 Thread dougsemler at gmail dot com
: libfortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: dougsemler at gmail dot com GCC build triplet: x86_64-pc-linux-gnu GCC host triplet: x86_64-pc-linux-gnu GCC target triplet: arm-unknown-elf http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41482