summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2020-03-22 23:07:09 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2020-03-22 23:12:54 -0700
commitd578f1d3ea317ef8d899d0fd9a4440ba67821d17 (patch)
tree6bed16a320b5ecb3ec869735c0a8843545e967a7
parentd059714746466b4062545719f2e81ca612aa22f3 (diff)
Change the run_without_tabs switching to dedicated
variable of make instead of d059714746 as requested. You can disable this like `make MJIT_WITHOUT_TABS=false` or `export MJIT_WITHOUT_TABS=false`.
-rw-r--r--common.mk5
-rw-r--r--tool/run_without_tabs.rb13
2 files changed, 9 insertions, 9 deletions
diff --git a/common.mk b/common.mk
index ded8e70c99..8813037c67 100644
--- a/common.mk
+++ b/common.mk
@@ -221,12 +221,15 @@ mjit_config.h: Makefile
# These rules using MJIT_HEADER_SUFFIX must be in common.mk, not
# Makefile.in, in order to override the macro in defs/universal.mk.
+# Pass MJIT_WITHOUT_TABS=false to disable tool/run_without_tabs.rb
+MJIT_WITHOUT_TABS=true
+
# Other `-Dxxx`s preceding `-DMJIT_HEADER` will be removed in transform_mjit_header.rb.
# So `-DMJIT_HEADER` should be passed first when rb_mjit_header.h is generated.
$(TIMESTAMPDIR)/$(MJIT_HEADER:.h=)$(MJIT_HEADER_SUFFIX).time: probes.h vm.$(OBJEXT) \
$(TIMESTAMPDIR)/$(arch)/.time $(srcdir)/tool/run_without_tabs.rb
$(ECHO) building $(@F:.time=.h)
- $(Q) $(BASERUBY) $(srcdir)/tool/run_without_tabs.rb $(MJIT_DEBUGFLAGS) -- \
+ $(Q) $(BASERUBY) $(srcdir)/tool/run_without_tabs.rb $(MJIT_WITHOUT_TABS) \
$(CPP) -DMJIT_HEADER $(MJIT_HEADER_FLAGS) $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) $(srcdir)/vm.c $(CPPOUTFLAG)$(@F:.time=.h).new
$(Q) $(IFCHANGE) "--timestamp=$@" $(@F:.time=.h) $(@F:.time=.h).new
diff --git a/tool/run_without_tabs.rb b/tool/run_without_tabs.rb
index aa5fb7f798..d1640c6d82 100644
--- a/tool/run_without_tabs.rb
+++ b/tool/run_without_tabs.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# This is a script to run a command in ARGV, expanding tabs in some files
-# included by vm.c to normalize indentation of MJIT header when debugflags
-# is -ggdb3 (default).
+# included by vm.c to normalize indentation of MJIT header. You can disable
+# this feature by setting MJIT_WITHOUT_TABS=false make variable.
#
# Note that preprocessor of GCC converts a hard tab to one spaces, where
# we expect it to be shown as 8 spaces. To obviate this script, we need
@@ -22,18 +22,15 @@ SKIPPED_FILES = %w[
vm_opts.h
]
-unless split_index = ARGV.index('--')
- abort "Usage: #{$0} [debugflags] -- [cmmand...]"
-end
-debugflags, command = ARGV[0...split_index], ARGV[(split_index + 1)..-1]
-
srcdir = File.expand_path('..', __dir__)
targets = EXPAND_TARGETS.flat_map { |t| Dir.glob(File.join(srcdir, t)) } - SKIPPED_FILES.map { |f| File.join(srcdir, f) }
sources = {}
mtimes = {}
+flag, *command = ARGV
+
targets.each do |target|
- next unless debugflags.include?('-ggdb3')
+ next if flag != 'true'
unless File.writable?(target)
puts "tool/run_without_tabs.rb: Skipping #{target.dump} as it's not writable."
next