diff options
author | Steve Ellcey <sellcey@cavium.com> | 2017-09-12 17:00:00 +0000 |
---|---|---|
committer | Steve Ellcey <sje@gcc.gnu.org> | 2017-09-12 17:00:00 +0000 |
commit | 29788f907095044876531d7b4df154ad8398f854 (patch) | |
tree | 270eb951e9930dd28e19fa02c5b3b4ea4267bfcc /libbacktrace | |
parent | ff971abe6034dc25019c3f470d8437b22b93dce0 (diff) | |
download | gcc-29788f907095044876531d7b4df154ad8398f854.zip gcc-29788f907095044876531d7b4df154ad8398f854.tar.gz gcc-29788f907095044876531d7b4df154ad8398f854.tar.bz2 |
re PR other/81096 (test case ttest in libbacktrace fails starting with its introduction in r249111)
2017-09-12 Steve Ellcey <sellcey@cavium.com>
PR other/81096
* Makefile.am (ttest_CFLAGS): Add $(AM_CFLAGS)
* Makefile.in: Regenerate.
From-SVN: r252038
Diffstat (limited to 'libbacktrace')
-rw-r--r-- | libbacktrace/ChangeLog | 6 | ||||
-rw-r--r-- | libbacktrace/Makefile.am | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/libbacktrace/ChangeLog b/libbacktrace/ChangeLog index 684f30e..f3b7486 100644 --- a/libbacktrace/ChangeLog +++ b/libbacktrace/ChangeLog @@ -1,6 +1,12 @@ 2017-09-12 Steve Ellcey <sellcey@cavium.com> PR other/81096 + * Makefile.am (ttest_CFLAGS): Add $(AM_CFLAGS) + * Makefile.in: Regenerate. + +2017-09-12 Steve Ellcey <sellcey@cavium.com> + + PR other/81096 * libbacktrace/Makefile.in (HAVE_PTHREAD_TRUE@@NATIVE_TRUE@ttest_CFLAGS): Add $(AM_CFLAGS) diff --git a/libbacktrace/Makefile.am b/libbacktrace/Makefile.am index b91d6bc..120beb1 100644 --- a/libbacktrace/Makefile.am +++ b/libbacktrace/Makefile.am @@ -117,7 +117,7 @@ if HAVE_PTHREAD check_PROGRAMS += ttest ttest_SOURCES = ttest.c testlib.c -ttest_CFLAGS = -pthread +ttest_CFLAGS = $(AM_CFLAGS) -pthread ttest_LDADD = libbacktrace.la endif HAVE_PTHREAD |