|
From: <sv...@va...> - 2016-09-20 12:31:57
|
Author: cborntra
Date: Tue Sep 20 13:31:49 2016
New Revision: 15970
Log:
fix for bugzilla 361253 [s390x] ex_clone.c:42: undefined reference to `pthread_create'
Fix provides by Dann Frazier
Modified:
trunk/NEWS
trunk/none/tests/s390x/Makefile.am
Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS (original)
+++ trunk/NEWS Tue Sep 20 13:31:49 2016
@@ -169,6 +169,7 @@
368412 False positive result for altivec capability check
368461 mmapunmap test fails on ppc64
369000 AMD64 fma4 instructions unsupported.
+361253 [s390x] ex_clone.c:42: undefined reference to `pthread_create'
n-i-bz Fix incorrect (or infinite loop) unwind on RHEL7 x86 and amd64
n-i-bz massif --pages-as-heap=yes does not report peak caused by mmap+munmap
Modified: trunk/none/tests/s390x/Makefile.am
==============================================================================
--- trunk/none/tests/s390x/Makefile.am (original)
+++ trunk/none/tests/s390x/Makefile.am Tue Sep 20 13:31:49 2016
@@ -63,4 +63,4 @@
cu24_1_CFLAGS = $(AM_CFLAGS) -DM3=1
fixbr_CFLAGS = $(AM_CFLAGS) @FLAG_MLONG_DOUBLE_128@
fpext_CFLAGS = $(AM_CFLAGS) @FLAG_MLONG_DOUBLE_128@
-ex_clone_LDFLAGS = -lpthread
+ex_clone_LDADD = -lpthread
|