Bug 35122 - QNX 6 configure diff
Summary: QNX 6 configure diff
Status: RESOLVED MOVED
Alias: None
Product: cairo
Classification: Unclassified
Component: general (show other bugs)
Version: 1.10.0
Hardware: All other
: medium normal
Assignee: Carl Worth
QA Contact: cairo-bugs mailing list
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-03-08 11:48 UTC by seanb
Modified: 2018-08-25 13:44 UTC (History)
0 users

See Also:
i915 platform:
i915 features:


Attachments
diff (432 bytes, text/plain)
2011-03-08 11:48 UTC, seanb
Details
config.log as requested (209.17 KB, text/plain)
2011-03-09 06:26 UTC, seanb
Details

Description seanb 2011-03-08 11:48:29 UTC
Created attachment 44244 [details]
diff

A small diff to the 1.10.0 configure to get the trace feature
working on QNX 6 (the default check for pthreads isn't sufficient
if no extra libs / options are required).
Comment 1 M Joonas Pihlaja 2011-03-09 00:47:50 UTC
Thanks for this bug report.  Could you attach the full output file config.log of configure before applying your patch?  The default check should work if no libs are needed, so linking explicitly with libc seems superfluous.  We've had a number of problems with out flag checking code being too strict for some platforms (as a reaction to not being strict enough on others.)
Comment 2 seanb 2011-03-09 06:26:44 UTC
Created attachment 44275 [details]
config.log as requested

config.log as requested.  The issue appears to be
in cairo-1.10.0/build/configure.ac.pthread which
defaults PTHREAD_LIBS="-lpthread" if not already
set.
Comment 3 M Joonas Pihlaja 2011-03-09 07:32:14 UTC
(In reply to comment #2)

> config.log as requested.  The issue appears to be
> in cairo-1.10.0/build/configure.ac.pthread which
> defaults PTHREAD_LIBS="-lpthread" if not already
> set.

Yet, according to config.log, it correctly figures out that no extra pthread libraries need to be linked in.  From the log:

> pthread_CFLAGS='-D_REENTRANT'
> pthread_LIBS=''
[snip]
> real_pthread_CFLAGS=''
> real_pthread_LIBS=''
[snip]
> #define CAIRO_HAS_PTHREAD 1

Further up in the log it tries to use -lpthread, but that doesn't work, and then it tries -pthread, but that also doesn't work, and finally it tries nothing at all, and that does work.

The log also shows that configure.ac.pthreads doesn't believe your libc has "real" pthreads as opposed to stubs, but that's okay since compiling the library proper doesn't need "real" pthread functionality. The test suite does, however, as some of the tests spawn actual threads, so make check might not work for you.

What is the actual error you're seeing?
Comment 4 seanb 2011-03-09 08:00:17 UTC
The issue is this section:

configure:33670: checking whether cairo's cairo-trace feature could be enabled
configure:33674: result: no (requires dynamic linker and zlib and real pthreads)

With the patch this passes and I also get:

#define CAIRO_HAS_REAL_PTHREAD 1
#define CAIRO_HAS_TRACE 1
Comment 5 M Joonas Pihlaja 2011-03-09 08:05:01 UTC
(In reply to comment #4)
> The issue is this section:
> 
> configure:33670: checking whether cairo's cairo-trace feature could be enabled
> configure:33674: result: no (requires dynamic linker and zlib and real
> pthreads)

Right, you did say that it was to get the trace feature working. Okay, so
here's what I think is happening:  cairo-trace needs real pthreads for
pthread_once() and friends, but our configure test doesn't think libc provides
for real pthreads. This is because many other platforms have weakly linked stub
implementations of the pthread primitives for efficiency reasons in case the
application isn't actually multithreaded.  A pure link test against libc
doesn't work on those platforms as it will give a false positive signal for
pthreads being available in libc when in reality the libc implementation will
error out when it comes time to do something actually thready.  This makes it
impossible to test for real pthread support in libc without actually running
some code and seeing if it fails.

Your patch works around the configuring logic by making it believe that the
user set PTHREAD_LIBS. Our basic bug there is that we consider
PTHREAD_LIBS/CFLAGS=""
in the environment to be unset, even though the user has explicitly told us not
to use any flags or libs at all.  Our deeper bug is that we don't trust libc to
implement pthreads properly, but I'm not sure we can fix that without some old
fashioned "if <your OS>" conditionals.

The reason cairo-trace utility needs to use real pthreads because it would be a
disaster if the application were actually threaded, but cairo trace used libc
stubs (this may be an issue due to cairo-trace LD_PRELOADING the interposer
libcairo-tracer.so.)  On the other hand, using cairo-trace on a threaded
application seems to be a disaster anyway right now, so changing the
cairo-trace requirement from real pthreads might not make a practical
difference. :)
Comment 6 seanb 2011-03-10 07:21:57 UTC
(In reply to comment #5)
> (In reply to comment #4)
> > The issue is this section:
> > 
> > configure:33670: checking whether cairo's cairo-trace feature could be enabled
> > configure:33674: result: no (requires dynamic linker and zlib and real
> > pthreads)
> 
> Right, you did say that it was to get the trace feature working. Okay, so
> here's what I think is happening:  cairo-trace needs real pthreads for
> pthread_once() and friends, but our configure test doesn't think libc provides
> for real pthreads. This is because many other platforms have weakly linked stub
> implementations of the pthread primitives for efficiency reasons in case the
> application isn't actually multithreaded.  A pure link test against libc
> doesn't work on those platforms as it will give a false positive signal for
> pthreads being available in libc when in reality the libc implementation will
> error out when it comes time to do something actually thready.  This makes it
> impossible to test for real pthread support in libc without actually running
> some code and seeing if it fails.
> 
> Your patch works around the configuring logic by making it believe that the
> user set PTHREAD_LIBS. Our basic bug there is that we consider
> PTHREAD_LIBS/CFLAGS=""
> in the environment to be unset, even though the user has explicitly told us not
> to use any flags or libs at all.  Our deeper bug is that we don't trust libc to
> implement pthreads properly, but I'm not sure we can fix that without some old
> fashioned "if <your OS>" conditionals.
> 
> The reason cairo-trace utility needs to use real pthreads because it would be a
> disaster if the application were actually threaded, but cairo trace used libc
> stubs (this may be an issue due to cairo-trace LD_PRELOADING the interposer
> libcairo-tracer.so.)  On the other hand, using cairo-trace on a threaded
> application seems to be a disaster anyway right now, so changing the
> cairo-trace requirement from real pthreads might not make a practical
> difference. :)

So does that mean you'll accept the patch?
Comment 7 M Joonas Pihlaja 2011-03-11 13:21:39 UTC
(In reply to comment #6)

> So does that mean you'll accept the patch?

Not quite. The patch is a diff against configure, but that's an autotools generated file from configure.ac and various build/* files.  I can use it as a basis for fixing it well enough though.  I'll report back when there's something to test. Until then I hope you can live with the workaround of setting PTHREAD_LIBS to something.
Comment 8 GitLab Migration User 2018-08-25 13:44:21 UTC
-- GitLab Migration Automatic Message --

This bug has been migrated to freedesktop.org's GitLab instance and has been closed from further activity.

You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.freedesktop.org/cairo/cairo/issues/170.


Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.