diff options
author | jbeich <jbeich@FreeBSD.org> | 2018-12-03 18:48:06 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2018-12-03 18:48:06 +0800 |
commit | 93462f36794abd13e99c24c55b448cc140a50a6d (patch) | |
tree | 4e4178a4553b5a3ad76616a8d0742e9857b84d18 /x11 | |
parent | 9a76f93e67f038d9fe2e25fc86779cc5de269300 (diff) | |
download | freebsd-ports-gnome-93462f36794abd13e99c24c55b448cc140a50a6d.tar.gz freebsd-ports-gnome-93462f36794abd13e99c24c55b448cc140a50a6d.tar.zst freebsd-ports-gnome-93462f36794abd13e99c24c55b448cc140a50a6d.zip |
x11/pixman: mark as LLD_UNSAFE
/usr/bin/ld: error: can't create dynamic relocation R_ARM_V4BX against local symbol in readonly segment; recompile object files with -fPIC
>>> defined in ./.libs/libpixman-arm-simd.a(pixman-arm-simd-asm-scaled.o)
>>> referenced by pixman-arm-simd-asm-scaled.o:(.text+0x1B8) in archive ./.libs/libpixman-arm-simd.a
PR: 233740
Reported by: Charlie Li
Approved by: portmgr blanket
Diffstat (limited to 'x11')
-rw-r--r-- | x11/pixman/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/x11/pixman/Makefile b/x11/pixman/Makefile index 5b482ef96ced..c81a555df21d 100644 --- a/x11/pixman/Makefile +++ b/x11/pixman/Makefile @@ -29,6 +29,7 @@ MAKE_ARGS= SUBDIRS=pixman .if ${ARCH} == "armv6" || ${ARCH} == "armv7" BUILD_DEPENDS+= ${LOCALBASE}/bin/as:devel/binutils CONFIGURE_ENV+= CCASFLAGS="${CFLAGS} -B${LOCALBASE}/bin -no-integrated-as" +LLD_UNSAFE= yes .endif .if ${ARCH} == "powerpc64" || ${ARCH} == "powerpc" |