Re: [PATCH] configure: cache result of "sys/sdt.h" header check

2022-05-24 Thread Eric Gallager via Gcc-patches
On Thu, Mar 24, 2022 at 9:27 AM David Seifert via Gcc-patches wrote: > > On Mon, 2022-03-14 at 18:38 +0100, David Seifert wrote: > > Use AC_CACHE_CHECK to store the result of the header check for > > systemtap's "sys/sdt.h", which is similar in spirit to libstdc++'s > > AC_CACHE_CHECK(..., glibcxx

Re: [PATCH] configure: cache result of "sys/sdt.h" header check

2022-03-24 Thread David Seifert via Gcc-patches
On Mon, 2022-03-14 at 18:38 +0100, David Seifert wrote: > Use AC_CACHE_CHECK to store the result of the header check for > systemtap's "sys/sdt.h", which is similar in spirit to libstdc++'s > AC_CACHE_CHECK(..., glibcxx_cv_sys_sdt_h). > > gcc/ >     * configure.ac: Add AC_CACHE_CHECK(..., gcc_

[PATCH] configure: cache result of "sys/sdt.h" header check

2022-03-14 Thread David Seifert via Gcc-patches
Use AC_CACHE_CHECK to store the result of the header check for systemtap's "sys/sdt.h", which is similar in spirit to libstdc++'s AC_CACHE_CHECK(..., glibcxx_cv_sys_sdt_h). gcc/ * configure.ac: Add AC_CACHE_CHECK(..., gcc_cv_sys_sdt_h). * configure: Regenerate. --- gcc/configure