Files
mruby-mruby/mrbgems/mruby-bin-config/mruby-config
T
Yukihiro "Matz" Matsumoto 58ab97e300 mruby-config: add --cc and --ld options.
* `--cc` print compiler name
* `--ld` print linker name
2021-04-06 17:25:53 +09:00

35 lines
997 B
Bash

#!/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