extconf: better check for GCC atomic builtins
[raindrops.git] / ext / raindrops / extconf.rb
blob447a90a252d4479d5e5c9b39a22b337f8918878a
1 require 'mkmf'
3 dir_config('atomic_ops')
4 have_func('mmap', 'sys/mman.h') or abort 'mmap() not found'
5 have_func('munmap', 'sys/mman.h') or abort 'munmap() not found'
7 $CPPFLAGS += " -D_GNU_SOURCE "
8 have_func('mremap', 'sys/mman.h')
10 $CPPFLAGS += " -D_BSD_SOURCE "
11 have_func("getpagesize", "unistd.h")
12 have_func('rb_thread_blocking_region')
13 have_func('rb_thread_io_blocking_region')
15 checking_for "GCC 4+ atomic builtins" do
16   # we test CMPXCHG anyways even though we don't need it to filter out
17   # ancient i386-only targets without CMPXCHG
18   src = <<SRC
19 int main(int argc, char * const argv[]) {
20         unsigned long i = 0;
21         __sync_lock_test_and_set(&i, 0);
22         __sync_lock_test_and_set(&i, 1);
23         __sync_add_and_fetch(&i, argc);
24         __sync_sub_and_fetch(&i, argc);
25         return 0;
27 SRC
29   if try_link(src)
30     $defs.push(format("-DHAVE_GCC_ATOMIC_BUILTINS"))
31     true
32   else
33     false
34   end
35 end or have_header('atomic_ops.h') or abort <<-SRC
37 libatomic_ops is required if GCC 4+ is not used.
38 See http://www.hpl.hp.com/research/linux/atomic_ops/
40 Users of Debian-based distros may run:
42   apt-get install libatomic-ops-dev
43 SRC
44 create_makefile('raindrops_ext')