aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Mynott <stmuk@users.noreply.github.com>2017-08-01 14:21:23 +0100
committerGitHub <noreply@github.com>2017-08-01 14:21:23 +0100
commit8f84de088e62079fc6034ae5f2925da2e0fed47d (patch)
tree9be0f0532b0d70357ea9c1c92f12d8ce8e57f86c
parent9339d23375dc9765892a0e50226e297093be3473 (diff)
parent5e7a2d4fb384caf116c119d00f26c83da93811a4 (diff)
Merge pull request #95 from markmont/moarvm-option
Add --moar-option="--option=value" option to Configure.pl
-rw-r--r--Configure.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/Configure.pl b/Configure.pl
index cc9000b..84cd176 100644
--- a/Configure.pl
+++ b/Configure.pl
@@ -34,7 +34,7 @@ MAIN: {
GetOptions(\%options, 'help!', 'prefix=s',
'sysroot=s', 'sdkroot=s',
'backends=s', 'no-clean!',
- 'gen-nqp:s', 'gen-moar:s',
+ 'gen-nqp:s', 'gen-moar:s', 'moar-option=s@',
'make-install!', 'makefile-timing!',
'force!',
) or do {
@@ -285,6 +285,8 @@ General Options:
--gen-nqp[=branch]
Download and build a copy of NQP
--makefile-timing Enable timing of individual makefile commands
+ --moar-option='--option=value'
+ Options to pass to MoarVM's Configure.pl
Configure.pl also reads options from 'config.default' in the current directory.
END