https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81883
JD changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81883
--- Comment #3 from JD ---
and using --with-build-config=bootstrap-lto
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66029
JD changed:
What|Removed |Added
Status|WAITING |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91288
JD changed:
What|Removed |Added
CC||t at sharklasers dot com
--- Comment #3 from JD
: unassigned at gcc dot gnu.org
Reporter: t at sharklasers dot com
Target Milestone: ---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71174
--- Comment #1 from JD ---
Created attachment 38515
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=38515&action=edit
Short example
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71174
--- Comment #2 from JD ---
$ g++ -std=c++1z -Wall -Wextra -fconcepts bug.cpp
bug.cpp:10:32: error: concept ‘constexpr bool InputIterator(T)’ declared with
function parameters
concept bool InputIterator(T it) {
^
g
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71174
--- Comment #3 from JD ---
$ gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=local/gcc6.1/lib/gcc/x86_64-pc-linux-gnu/6.1.0/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: ../gcc-6.1.0/configure --prefix=local/gcc6.1
--e
ormal
Priority: P3
Component: bootstrap
Assignee: unassigned at gcc dot gnu.org
Reporter: t at sharklasers dot com
Target Milestone: ---
Created attachment 41999
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=41999&action=edit
Output of a sequent
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81883
JD changed:
What|Removed |Added
Target||x86_64
Host|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70831
JD changed:
What|Removed |Added
CC||t at sharklasers dot com
--- Comment #9 from JD
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70831
--- Comment #10 from JD ---
Same error without the linker plugin:
LDFLAGS=-O3 -flto=4
CXXFLAGS=-march=native -O3 -flto
CFLAGS=-march=native -O3 -flto
$gcc-6.3.0/configure --prefix=/home/local/gcc-6.3.0lto
--enable-languages=c,c++,fortran --enab
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70831
--- Comment #12 from JD ---
My CPU is Intel Core i7-4800MQ, but I realized my report was misleading.
I get that same error with
LDFLAGS=-flto
CXXFLAGS=-flto
CFLAGS=-flto
which results in
"CFLAGS=-g -O2 -flto" "CXXFLAGS=-g -O2 -flto -D_GNU_SOURC
Priority: P3
Component: lto
Assignee: unassigned at gcc dot gnu.org
Reporter: t at sharklasers dot com
Target Milestone: ---
Created attachment 35468
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=35468&action=edit
complete commandline used to link
"o
Assignee: unassigned at gcc dot gnu.org
Reporter: t at sharklasers dot com
Target Milestone: ---
Created attachment 35469
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=35469&action=edit
complete command line
I compiled gcc5.1 without LTO optimizations and tried to
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66029
--- Comment #1 from JD ---
I compiled with used:
-O3 -flto -fuse-linker-plugin -fno-fat-lto-objects
and tried to link with:
-flto=4 -O3 -fuse-linker-plugin
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66029
--- Comment #4 from JD ---
I tried as you advised; this is the configuration I'm trying to build:
$ ../gcc-5.1.0/configure --prefix=gcc5.1 --enable-languages=c,c++
--enable-gold=yes --enable-ld=yes --enable-lto --enable-bootstrap
--with-build-c
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66029
--- Comment #5 from JD ---
Created attachment 35477
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=35477&action=edit
errors using binutils 2.25
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66029
--- Comment #6 from JD ---
Concerning the latest release of binutils, I have to admit I've never used a
local installation, so I might be doing something wrong here.
I downloaded and compiled version 2.25 and with that I get undefined references
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66029
--- Comment #9 from JD ---
I reconfigured and recompiled binutils 2.25 with the --enable-plugins and
--enable-lto flags.
But I'm afraid I must be missing something: Linking with the newly compiled ld
2.25 works fine without lto but using it with
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66027
--- Comment #2 from JD ---
I managed create a minimal example.
bug66027 $ make -j
g++ -std=c++14 -c -fPIC -march=native -O3 -flto -fuse-linker-plugin
-fno-fat-lto-objects ASTContext_preproc.cpp -o ASTContext_preproc.o
g++ -std=c++14 -c -fPIC -m
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66027
--- Comment #3 from JD ---
Created attachment 35490
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=35490&action=edit
preprocessed sources and makefile
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66027
--- Comment #4 from JD ---
Removing the -O3 flag from the first two invocations changes the behavior:
g++ -std=c++14 -c -fPIC -march=native -flto -fuse-linker-plugin
-fno-fat-lto-objects ASTContext_preproc.cpp -o ASTContext_preproc.o
g++ -std=c+
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66027
--- Comment #5 from JD ---
Created attachment 35492
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=35492&action=edit
output of gcc -march=native -Q --help=target
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66029
--- Comment #11 from JD ---
Yes, it's non-empty:
$ ar --help | grep plugin
Usage: ar [emulation options] [-]{dmpqrstx}[abcDfilMNoPsSTuvV] [--plugin
] [member-name] [count] archive-file file...
--plugin - load the specified plugin
ar: supporte
++
Assignee: unassigned at gcc dot gnu.org
Reporter: t at sharklasers dot com
Target Milestone: ---
Created attachment 35631
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=35631&action=edit
preprocessed source
$ g++ -O3 -fopt-info-missed-optall test.cpp
test.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66301
--- Comment #1 from JD ---
german@prometheus ~/test $ gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=local/gcc5.1/lib/gcc/x86_64-unknown-linux-gnu/5.1.0/lto-wrapper
Target: x86_64-unknown-linux-gnu
Configured with: ../gcc-5.1.0/
++
Assignee: unassigned at gcc dot gnu.org
Reporter: t at sharklasers dot com
Target Milestone: ---
Host: x86_64
Created attachment 35969
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=35969&action=edit
minimal example
$ g++ -fcilkplus test.cpp
test.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66859
JD changed:
What|Removed |Added
Known to fail||5.1.0, 5.2.0
--- Comment #1 from JD ---
Same issue
29 matches
Mail list logo