projects
/
gcl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
278df59
)
Version_2_6_13pre39
author
Camm Maguire
<camm@debian.org>
Mon, 30 Dec 2019 15:46:22 +0000
(15:46 +0000)
committer
Camm Maguire
<camm@debian.org>
Mon, 30 Dec 2019 15:46:22 +0000
(15:46 +0000)
Gbp-Pq: Name Version_2_6_13pre39
configure
patch
|
blob
|
history
configure.in
patch
|
blob
|
history
diff --git
a/configure
b/configure
index a0b79b1052c1f137bc5c5f1d0473494cddeff0fa..7a1405be5898e18bd9ca714c4adda122cfc6333e 100755
(executable)
--- a/
configure
+++ b/
configure
@@
-4379,7
+4379,10
@@
$as_echo "Reducing optimization on profiling arm build to workaround gcc bug" >&
enable_debug=yes;;
esac
TCFLAGS="$TCFLAGS -pg";
- TLIBS="$TLIBS -pg";
+ case $use in
+ s390*) ;; # relocation truncation bug in gcc
+ *) TLIBS="$TLIBS -pg";;
+ esac
TFPFLAG=""
$as_echo "#define GCL_GPROF 1" >>confdefs.h
diff --git
a/configure.in
b/configure.in
index 0a285c3fefef37f6b50bf6ad7bb1b167813cbd9b..1e902172fc27fd886479f6aa40eb630a151b94a3 100644
(file)
--- a/
configure.in
+++ b/
configure.in
@@
-587,7
+587,10
@@
if test "$enable_gprof" = "yes" ; then
enable_debug=yes;;
esac
TCFLAGS="$TCFLAGS -pg";
- TLIBS="$TLIBS -pg";
+ case $use in
+ s390*) ;; # relocation truncation bug in gcc
+ *) TLIBS="$TLIBS -pg";;
+ esac
TFPFLAG=""
AC_DEFINE(GCL_GPROF,1,[use gprof profiling])
else