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

(-)Makefile (-2 lines)
Lines 14-21 Link Here
14
LICENSE=	BSD2CLAUSE BSD3CLAUSE MIT
14
LICENSE=	BSD2CLAUSE BSD3CLAUSE MIT
15
LICENSE_COMB=	multi
15
LICENSE_COMB=	multi
16
16
17
BROKEN_powerpc64=	fails to compile vec_memcpy.S
18
19
USES=		libtool pathfix pkgconfig
17
USES=		libtool pathfix pkgconfig
20
PATHFIX_MAKEFILEIN=	configure
18
PATHFIX_MAKEFILEIN=	configure
21
GNU_CONFIGURE=	yes
19
GNU_CONFIGURE=	yes
(-)files/patch-vec_memcpy.diff (-2 / +1 lines)
Lines 35-42 Link Here
35
 #ifdef LIBMOTOVEC
35
 #ifdef LIBMOTOVEC
36
 	b	memcpy		// b to memcpy with correct args in r3 and r4	
36
 	b	memcpy		// b to memcpy with correct args in r3 and r4	
37
 #else
37
 #else
38
-	b	_vec_memcpy	// b to vec_memcpy with correct args in r3 and r4	
38
	b	_vec_memcpy	// b to vec_memcpy with correct args in r3 and r4	
39
+	b	_vec_memcpy@plt	// b to vec_memcpy with correct args in r3 and r4	
40
 #endif
39
 #endif
41
+	.size	vec_bcopy, . - vec_bcopy
40
+	.size	vec_bcopy, . - vec_bcopy
42
 // End of bcopy in AltiVec
41
 // End of bcopy in AltiVec
(-)files/patch-vec_memset.diff (-2 / +1 lines)
Lines 28-35 Link Here
28
 #ifdef LIBMOTOVEC
28
 #ifdef LIBMOTOVEC
29
 	b	memset     
29
 	b	memset     
30
 #else
30
 #else
31
-	b	_vec_memset     
31
	b	_vec_memset     
32
+	b	_vec_memset@plt
33
 #endif
32
 #endif
34
+	.size	vec_bzero, . - vec_bzero
33
+	.size	vec_bzero, . - vec_bzero
35
 
34
 

Return to bug 233852