diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2019-02-25 23:49:16 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-02-25 23:49:16 +0900 |
| commit | 68f421c859e615feaae42d1cc085062096f2c581 (patch) | |
| tree | 498f7b0ec23a5a7d9cc23716e40ad089e5eee952 /tasks/toolchains/openwrt.rake | |
| parent | 6337bde8a534df09a853ed2a832d5ea171e9bcc6 (diff) | |
| parent | 31f1b4a553c4c887c2435440e044f79eceb4dc4c (diff) | |
| download | mruby-68f421c859e615feaae42d1cc085062096f2c581.tar.gz mruby-68f421c859e615feaae42d1cc085062096f2c581.zip | |
Merge pull request #4294 from shuujii/remove-explicit-set-of-DISABLE_GEMS
Remove explicit set of `DISABLE_GEMS`
Diffstat (limited to 'tasks/toolchains/openwrt.rake')
| -rw-r--r-- | tasks/toolchains/openwrt.rake | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tasks/toolchains/openwrt.rake b/tasks/toolchains/openwrt.rake index 1637f6d91..aeb6dbcbc 100644 --- a/tasks/toolchains/openwrt.rake +++ b/tasks/toolchains/openwrt.rake @@ -5,7 +5,6 @@ MRuby::Toolchain.new(:openwrt) do |conf| cc.command = ENV['TARGET_CC'] cc.flags = ENV['TARGET_CFLAGS'] cc.include_paths = ["#{MRUBY_ROOT}/include"] - cc.defines = %w(DISABLE_GEMS) cc.option_include_path = '-I%s' cc.option_define = '-D%s' cc.compile_options = '%{flags} -MMD -o %{outfile} -c %{infile}' @@ -15,7 +14,6 @@ MRuby::Toolchain.new(:openwrt) do |conf| cxx.command = ENV['TARGET_CXX'] cxx.flags = ENV['TARGET_CXXFLAGS'] cxx.include_paths = ["#{MRUBY_ROOT}/include"] - cxx.defines = %w(DISABLE_GEMS) cxx.option_include_path = '-I%s' cxx.option_define = '-D%s' cxx.compile_options = '%{flags} -MMD -o %{outfile} -c %{infile}' |
