From a6274c2f900d75f16e6f35ec52ea7340043d2d12 Mon Sep 17 00:00:00 2001 From: "Michael D. Lowis" Date: Tue, 21 Oct 2014 16:47:46 -0400 Subject: [PATCH] Added command line option for specifying the entry point --- source/sclpl/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/sclpl/main.c b/source/sclpl/main.c index 84ee672..d3211f5 100644 --- a/source/sclpl/main.c +++ b/source/sclpl/main.c @@ -17,8 +17,8 @@ opts_cfg_t Options_Config[] = { {"staticlib", false, "mode", "Compile the application as a static library"}, {"sharedlib", false, "mode", "Compile the application as a shared library"}, {"program", false, "mode", "Compile the application as an executable"}, - {"e", true, "entry", "Specify the file that contains the entry point for the executable"}, - {"entry", true, "entry", "Specify the file that contains the entry point for the executable"}, + {"e", true, "entry", "Specify the module that contains the entry point for the executable"}, + {"entry", true, "entry", "Specify the module that contains the entry point for the executable"}, {"R", true, "include", "Add a path to the list of require paths"}, {NULL, false, NULL, NULL } }; -- 2.52.0