bug-guile
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#25791: atomics on macOS


From: Matt Wette
Subject: bug#25791: atomics on macOS
Date: Mon, 20 Feb 2017 14:18:27 -0800

I saw this too and gave up trying to fix it.  I think this needs to be worked bottom up: I believe the C99 standard is specific about the type qualifier _Atomic being present for the first argument.  The workaround for now IMO, is to change atomics-internal.h from this:

#ifdef HAVE_STDATOMIC_H

to this:

#if (defined HAVE_STDATOMIC_H) && (!defined __clang__)

By the way, gcc is forgiving here.

Matt



reply via email to

[Prev in Thread] Current Thread [Next in Thread]