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] | |
I don't see how this patch does what you want to do. If you're on a powerpc32 host and the compiler defaults to -m32, then to target powerpc64 you want to write something likeIndex: Makefile.in =================================================================== --- Makefile.in (revision 109534) +++ Makefile.in (working copy) @@ -813,7 +813,11 @@ ALL_CPPFLAGS = $(INCLUDES) $(CPPFLAGS) $
# Build and host support libraries. LIBIBERTY = ../libiberty/libiberty.a +ifeq ($(CC), $(CC_FOR_BUILD)) +BUILD_LIBIBERTY = $(LIBIBERTY) +else BUILD_LIBIBERTY = $(build_objdir)/libiberty/libiberty.a +endif
# Dependencies on the intl and portability libraries.
LIBDEPS= $(CPPLIB) $(LIBIBERTY) $(LIBINTL_DEP) $(LIBICONV_DEP) $ (LIBDECNUMBER)
Attachment:
smime.p7s
Description: S/MIME cryptographic signature
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |