View | Details | Raw Unified | Return to bug 195466
Collapse All | Expand All

(-)Makefile (+4 lines)
Lines 23-28 USE_LDCONFIG= yes Link Here
23
23
24
OPTIONS_DEFINE=	DEBUG POSTPROC RUNTIME THREADS SHARED
24
OPTIONS_DEFINE=	DEBUG POSTPROC RUNTIME THREADS SHARED
25
OPTIONS_DEFAULT=	POSTPROC RUNTIME THREADS SHARED
25
OPTIONS_DEFAULT=	POSTPROC RUNTIME THREADS SHARED
26
OPTIONS_EXCLUDE_armv6=	RUNTIME
26
POSTPROC_DESC=	Enable postprocessing
27
POSTPROC_DESC=	Enable postprocessing
27
RUNTIME_DESC=	Enable runtime CPU detection
28
RUNTIME_DESC=	Enable runtime CPU detection
28
SHARED_DESC=	Enable shared-library support
29
SHARED_DESC=	Enable shared-library support
Lines 74-79 CONFIGURE_ARGS+= --target=ia64-linux-gcc Link Here
74
CONFIGURE_ARGS+=	--target=ppc32-linux-gcc
75
CONFIGURE_ARGS+=	--target=ppc32-linux-gcc
75
.elif ${ARCH} == "powerpc64"
76
.elif ${ARCH} == "powerpc64"
76
CONFIGURE_ARGS+=	--target=ppc64-linux-gcc
77
CONFIGURE_ARGS+=	--target=ppc64-linux-gcc
78
.elif ${ARCH} == "armv6"
79
CONFIGURE_ARGS+=	--target=armv6-linux-gcc --cpu=armv6
80
EXTRA_PATCHES+=	${FILESDIR}/extra-patch-build_make_Makefile
77
.else
81
.else
78
IGNORE=	no support for ${ARCH} the moment. testing/patches are welcome
82
IGNORE=	no support for ${ARCH} the moment. testing/patches are welcome
79
.endif
83
.endif
(-)files/extra-patch-build_make_Makefile (+11 lines)
Added Link Here
1
--- build/make/Makefile.orig	2013-11-18 22:18:52 UTC
2
+++ build/make/Makefile
3
@@ -68,7 +68,7 @@ BUILD_ROOT?=.
4
 VPATH=$(SRC_PATH_BARE)
5
 CFLAGS+=-I$(BUILD_PFX)$(BUILD_ROOT) -I$(SRC_PATH)
6
 CXXFLAGS+=-I$(BUILD_PFX)$(BUILD_ROOT) -I$(SRC_PATH)
7
-ASFLAGS+=-I$(BUILD_PFX)$(BUILD_ROOT)/ -I$(SRC_PATH)/
8
+ASFLAGS+=-I$(BUILD_PFX)$(BUILD_ROOT)/ -I$(SRC_PATH)/ -meabi=5
9
 DIST_DIR?=dist
10
 HOSTCC?=gcc
11
 TGT_ISA:=$(word 1, $(subst -, ,$(TOOLCHAIN)))
(-)files/patch-build_make_configure.sh (+10 lines)
Added Link Here
1
--- build/make/configure.sh.orig	2014-11-27 18:00:48 UTC
2
+++ build/make/configure.sh
3
@@ -799,7 +799,6 @@ process_common_toolchain() {
4
 
5
         case ${tgt_cc} in
6
         gcc)
7
-            CROSS=${CROSS:-arm-none-linux-gnueabi-}
8
             link_with_cc=gcc
9
             setup_gnu_toolchain
10
             arch_int=${tgt_isa##armv}

Return to bug 195466