diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-04-08 07:30:46 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-04-08 07:32:35 +0900 |
| commit | 6d3c0227498050d551243417340e704023fcaf42 (patch) | |
| tree | 6c9f360f82d50fc54067c979d4d3bc0519ba6060 | |
| parent | cbe061c2f4b55bafa0940aecb3a0bc164de7805b (diff) | |
| download | mruby-6d3c0227498050d551243417340e704023fcaf42.tar.gz mruby-6d3c0227498050d551243417340e704023fcaf42.zip | |
mruby-config.bat: update as the shell version. [ci skip]
| -rw-r--r-- | mrbgems/mruby-bin-config/mruby-config.bat | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mrbgems/mruby-bin-config/mruby-config.bat b/mrbgems/mruby-bin-config/mruby-config.bat index a1f7bfdd1..949fea06f 100644 --- a/mrbgems/mruby-bin-config/mruby-config.bat +++ b/mrbgems/mruby-bin-config/mruby-config.bat @@ -3,7 +3,9 @@ :top shift if "%0" equ "" goto :eof +if "%0" equ "--cc" goto cc if "%0" equ "--cflags" goto cflags +if "%0" equ "--ld" goto ld if "%0" equ "--ldflags" goto ldflags if "%0" equ "--ldflags-before-libs" goto ldflagsbeforelibs if "%0" equ "--libs" goto libs @@ -12,10 +14,18 @@ if "%0" equ "--help" goto showhelp echo Invalid Option goto :eof +:cc +echo MRUBY_CC +goto top + :cflags echo MRUBY_CFLAGS goto top +:ld +echo MRUBY_LD +goto top + :libs echo MRUBY_LIBS goto top @@ -35,7 +45,9 @@ goto top :showhelp echo Usage: mruby-config [switches] echo switches: +echo --cc print compiler name echo --cflags print flags passed to compiler +echo --ld print linker name echo --ldflags print flags passed to linker echo --ldflags-before-libs print flags passed to linker before linked libraries echo --libs print linked libraries |
