Can we instead of adding new macroses in config/tls.m4 use something like that in libgomp:
#if defined (HAVE_TLS) && defined (USE_EMUTLS) (with GCC_CHECK_EMUTLS in libgomp/configure.ac)? 2014-12-08 19:28 GMT+03:00 Jakub Jelinek <ja...@redhat.com>: > On Mon, Dec 08, 2014 at 07:01:09PM +0300, Varvara Rainchik wrote: >> Is it ok to add GCC_CHECK_EMUTLS test in libgomp/configure.ac or >> should I add in tls.m3 a similair test that would be used only in >> libgomp? > > I think config/tls.m4 would be a better place, but doing it in some way > where the users of config/tls.m4 could actually by using different macros > from there choose what they want (either check solely for real TLS, or > only for emutls, or for both). And libgomp/configure.ac would then choose > it is happy with both. > > Jakub