mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
43 lines
927 B
Batchfile
43 lines
927 B
Batchfile
@echo off
|
|
|
|
:top
|
|
shift
|
|
if "%0" equ "" goto :eof
|
|
if "%0" equ "--cflags" goto cflags
|
|
if "%0" equ "--ldflags" goto ldflags
|
|
if "%0" equ "--ldflags-before-libs" goto ldflagsbeforelibs
|
|
if "%0" equ "--libs" goto libs
|
|
if "%0" equ "--libmruby-path" goto libmrubypath
|
|
if "%0" equ "--help" goto showhelp
|
|
echo Invalid Option
|
|
goto :eof
|
|
|
|
:cflags
|
|
echo MRUBY_CFLAGS
|
|
goto top
|
|
|
|
:libs
|
|
echo MRUBY_LIBS
|
|
goto top
|
|
|
|
:ldflags
|
|
echo MRUBY_LDFLAGS
|
|
goto top
|
|
|
|
:ldflagsbeforelibs
|
|
echo MRUBY_LDFLAGS_BEFORE_LIBS
|
|
goto top
|
|
|
|
:libmrubypath
|
|
echo MRUBY_LIBMRUBY_PATH
|
|
goto top
|
|
|
|
:showhelp
|
|
echo Usage: mruby-config [switches]
|
|
echo switches:
|
|
echo --cflags print flags passed to compiler
|
|
echo --ldflags print flags passed to linker
|
|
echo --ldflags-before-libs print flags passed to linker before linked libraries
|
|
echo --libs print linked libraries
|
|
echo --libmruby-path print libmruby path
|