This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[google/gcc-4_7-mobile] Fix inconsistency between Makefile.am and Makefile.in under libstdc++-v3


Fix inconsistency between Makefile.am and Makefile.in under libstdc++.

The inconsistency was introduced by
svn+ssh://gcc.gnu.org/svn/gcc/branches/google/gcc-4_7@194664

Since the re-generated Makefile.in has not changed (thus not included
in the patch), this modification should have no impact.

Hi Caroline, ok for google/gcc-4_7-mobile branch?

Patch >>>
diff --git a/libstdc++-v3/libsupc++/Makefile.am
b/libstdc++-v3/libsupc++/Makefile.am
index 34abc2c..0c4339d 100644
--- a/libstdc++-v3/libsupc++/Makefile.am
+++ b/libstdc++-v3/libsupc++/Makefile.am
@@ -137,7 +137,10 @@ nested_exception.o: nested_exception.cc
 AM_CXXFLAGS = \
  $(glibcxx_lt_pic_flag) $(glibcxx_compiler_shared_flag) \
  $(XTEMPLATE_FLAGS) \
- $(WARN_CXXFLAGS) $(OPTIMIZE_CXXFLAGS)  $(CONFIG_CXXFLAGS)
+ $(WARN_CXXFLAGS) \
+ $(OPTIMIZE_CXXFLAGS) \
+ $(CONFIG_CXXFLAGS) \
+ $($(@)_no_omit_frame_pointer)

 AM_MAKEFLAGS = \
  "gxx_include_dir=$(gxx_include_dir)"

--
Han Shen


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]