From 6fa4496a8ccba8daa447e5aaa20ae8e5815dc236 Mon Sep 17 00:00:00 2001 From: mpeterv Date: Tue, 29 Mar 2016 13:10:11 +0300 Subject: [PATCH] Mention possible targets in help message --- hererocks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/hererocks.py b/hererocks.py index 9ed7e86..a3d605d 100755 --- a/hererocks.py +++ b/hererocks.py @@ -997,6 +997,7 @@ def main(): "--cflags", default=None, help="Pass additional options to C compiler when building Lua or LuaJIT.") parser.add_argument("--target", help="Emulate 'make TARGET' when building standard Lua.", + choices=["linux", "macosx", "freebsd", "cl", "mingw", "posix", "generic"], default=get_default_lua_target()) parser.add_argument("--no-readline", help="Don't use readline library when building standard Lua.", action="store_true", default=False)