From a46840c312ae2f214631d75cd5387a045dc7f73b Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Fri, 29 Dec 2023 17:50:20 +0000 Subject: extconf: disable optimization to speed up checks by ~3% Compiler optimization isn't useful when doing portability checks for any of the things we care about. --- ext/raindrops/extconf.rb | 2 ++ 1 file changed, 2 insertions(+) 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') -- cgit v1.2.3-24-ge0c7