Skip to content

Commit

Permalink
2014-11-24 Bernd Edlinger <bernd.edlinger@hotmail.de>
Browse files Browse the repository at this point in the history
        * Makefile.def (module=gmp): Work around in-tree gmp configure bug with
        missing flex.
        * Makefile.in: Regenerated.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@218025 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
edlinger committed Nov 24, 2014
1 parent 7fbf53b commit d1a94f0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2014-11-24 Bernd Edlinger <bernd.edlinger@hotmail.de>

* Makefile.def (module=gmp): Work around in-tree gmp configure bug with
missing flex.
* Makefile.in: Regenerated.

2014-11-21 Ilya Verbin <ilya.verbin@intel.com>

* Makefile.in: Regenerate.
Expand Down
3 changes: 2 additions & 1 deletion Makefile.def
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ host_modules= { module= gas; bootstrap=true; };
host_modules= { module= gcc; bootstrap=true;
extra_make_flags="$(EXTRA_GCC_FLAGS)"; };
host_modules= { module= gmp; lib_path=.libs; bootstrap=true;
extra_configure_flags='--disable-shared';
// Work around in-tree gmp configure bug with missing flex.
extra_configure_flags='--disable-shared LEX="touch lex.yy.c"';
no_install= true;
// none-*-* disables asm optimizations, bootstrap-testing
// the compiler more thoroughly.
Expand Down
14 changes: 7 additions & 7 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -10986,7 +10986,7 @@ configure-gmp:
$$s/$$module_srcdir/configure \
--srcdir=$${topdir}/$$module_srcdir \
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
--target=none-${host_vendor}-${host_os} --disable-shared \
--target=none-${host_vendor}-${host_os} --disable-shared LEX="touch lex.yy.c" \
|| exit 1
@endif gmp

Expand Down Expand Up @@ -11022,7 +11022,7 @@ configure-stage1-gmp:
--target=none-${host_vendor}-${host_os} \
\
$(STAGE1_CONFIGURE_FLAGS) \
--disable-shared
--disable-shared LEX="touch lex.yy.c"
@endif gmp-bootstrap

.PHONY: configure-stage2-gmp maybe-configure-stage2-gmp
Expand Down Expand Up @@ -11056,7 +11056,7 @@ configure-stage2-gmp:
--target=none-${host_vendor}-${host_os} \
--with-build-libsubdir=$(HOST_SUBDIR) \
$(STAGE2_CONFIGURE_FLAGS) \
--disable-shared
--disable-shared LEX="touch lex.yy.c"
@endif gmp-bootstrap

.PHONY: configure-stage3-gmp maybe-configure-stage3-gmp
Expand Down Expand Up @@ -11090,7 +11090,7 @@ configure-stage3-gmp:
--target=none-${host_vendor}-${host_os} \
--with-build-libsubdir=$(HOST_SUBDIR) \
$(STAGE3_CONFIGURE_FLAGS) \
--disable-shared
--disable-shared LEX="touch lex.yy.c"
@endif gmp-bootstrap

.PHONY: configure-stage4-gmp maybe-configure-stage4-gmp
Expand Down Expand Up @@ -11124,7 +11124,7 @@ configure-stage4-gmp:
--target=none-${host_vendor}-${host_os} \
--with-build-libsubdir=$(HOST_SUBDIR) \
$(STAGE4_CONFIGURE_FLAGS) \
--disable-shared
--disable-shared LEX="touch lex.yy.c"
@endif gmp-bootstrap

.PHONY: configure-stageprofile-gmp maybe-configure-stageprofile-gmp
Expand Down Expand Up @@ -11158,7 +11158,7 @@ configure-stageprofile-gmp:
--target=none-${host_vendor}-${host_os} \
--with-build-libsubdir=$(HOST_SUBDIR) \
$(STAGEprofile_CONFIGURE_FLAGS) \
--disable-shared
--disable-shared LEX="touch lex.yy.c"
@endif gmp-bootstrap

.PHONY: configure-stagefeedback-gmp maybe-configure-stagefeedback-gmp
Expand Down Expand Up @@ -11192,7 +11192,7 @@ configure-stagefeedback-gmp:
--target=none-${host_vendor}-${host_os} \
--with-build-libsubdir=$(HOST_SUBDIR) \
$(STAGEfeedback_CONFIGURE_FLAGS) \
--disable-shared
--disable-shared LEX="touch lex.yy.c"
@endif gmp-bootstrap


Expand Down

0 comments on commit d1a94f0

Please sign in to comment.