Skip to content

Commit 79bb0de

Browse files
committed
Sync with upstream gcc.
1 parent eba8d25 commit 79bb0de

14 files changed

+5777
-294
lines changed

ChangeLog

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2016-06-23 Jeff Johnston <[email protected]>
2+
3+
* Sync toplevel with upstream GCC.
4+
15
2016-03-22 Corinna Vinschen <[email protected]>
26

37
* Sync toplevel with upstream GCC.

Makefile.def

+10-2
Original file line numberDiff line numberDiff line change
@@ -50,18 +50,19 @@ host_modules= { module= gcc; bootstrap=true;
5050
host_modules= { module= gmp; lib_path=.libs; bootstrap=true;
5151
// Work around in-tree gmp configure bug with missing flex.
5252
extra_configure_flags='--disable-shared LEX="touch lex.yy.c"';
53+
extra_make_flags='AM_CFLAGS="-DNO_ASM"';
5354
no_install= true;
5455
// none-*-* disables asm optimizations, bootstrap-testing
5556
// the compiler more thoroughly.
5657
host="none-${host_vendor}-${host_os}";
5758
// gmp's configure will complain if given anything
5859
// different from host for target.
5960
target="none-${host_vendor}-${host_os}"; };
60-
host_modules= { module= mpfr; lib_path=.libs; bootstrap=true;
61+
host_modules= { module= mpfr; lib_path=src/.libs; bootstrap=true;
6162
extra_configure_flags='--disable-shared @extra_mpfr_configure_flags@';
6263
extra_make_flags='AM_CFLAGS="-DNO_ASM"';
6364
no_install= true; };
64-
host_modules= { module= mpc; lib_path=.libs; bootstrap=true;
65+
host_modules= { module= mpc; lib_path=src/.libs; bootstrap=true;
6566
extra_configure_flags='--disable-shared @extra_mpc_gmp_configure_flags@ @extra_mpc_mpfr_configure_flags@';
6667
no_install= true; };
6768
host_modules= { module= isl; lib_path=.libs; bootstrap=true;
@@ -638,3 +639,10 @@ bootstrap_stage = {
638639
bootstrap_stage = {
639640
id=feedback ; prev=profile ;
640641
bootstrap_target=profiledbootstrap ; };
642+
bootstrap_stage = {
643+
id=autoprofile ; prev=1 ;
644+
autoprofile="$$s/gcc/config/i386/$(AUTO_PROFILE)" ; };
645+
bootstrap_stage = {
646+
id=autofeedback ; prev=autoprofile ;
647+
bootstrap_target=autoprofiledbootstrap ;
648+
profile_data="PERF_DATA=perf.data" ; };

0 commit comments

Comments
 (0)