diff options
Diffstat (limited to 'mrbgems/mruby-bin-config/mruby-config')
| -rw-r--r-- | mrbgems/mruby-bin-config/mruby-config | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/mrbgems/mruby-bin-config/mruby-config b/mrbgems/mruby-bin-config/mruby-config new file mode 100644 index 000000000..3adda9e1a --- /dev/null +++ b/mrbgems/mruby-bin-config/mruby-config @@ -0,0 +1,34 @@ +#!/bin/sh + +print_help() +{ + 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" + echo " --libmruby-path print libmruby path" + echo " --help print this help" + exit 0 +} + +if [ $# -eq 0 ]; then + print_help +fi + +while [ $# -gt 0 ]; do + case $1 in + --cc) echo MRUBY_CC;; + --cflags) echo MRUBY_CFLAGS;; + --ld) echo MRUBY_LD;; + --ldflags) echo MRUBY_LDFLAGS;; + --ldflags-before-libs) echo MRUBY_LDFLAGS_BEFORE_LIBS;; + --libs) echo MRUBY_LIBS;; + --libmruby-path) echo MRUBY_LIBMRUBY_PATH;; + *) print_help;; + esac + shift +done |
