about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <bofh@yhbt.net>2023-12-29 17:50:20 +0000
committerEric Wong <bofh@yhbt.net>2024-01-15 02:57:59 +0000
commita46840c312ae2f214631d75cd5387a045dc7f73b (patch)
tree1d94ef4e5551cc7157d76777d33ea8c5f6613c92
parent2025f4e250531b36e5002b0e7c12f0263911ab8e (diff)
downloadraindrops-a46840c312ae2f214631d75cd5387a045dc7f73b.tar.gz
Compiler optimization isn't useful when doing portability checks
for any of the things we care about.
-rw-r--r--ext/raindrops/extconf.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/raindrops/extconf.rb b/ext/raindrops/extconf.rb
index 1733703..b8f147c 100644
--- a/ext/raindrops/extconf.rb
+++ b/ext/raindrops/extconf.rb
@@ -1,6 +1,7 @@
 require 'mkmf'
 require 'shellwords'
 
+$CFLAGS += ' -O0 ' # faster checks
 dir_config('atomic_ops')
 have_func('mmap', 'sys/mman.h') or abort 'mmap() not found'
 have_func('munmap', 'sys/mman.h') or abort 'munmap() not found'
@@ -158,4 +159,5 @@ Users of Debian-based distros may run:
   apt-get install libatomic-ops-dev
 SRC
 create_header # generate extconf.h to avoid excessively long command-line
+$CFLAGS.sub!(/ -O0 /, '')
 create_makefile('raindrops_ext')