1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-05-31 18:41:30 +00:00

Compare commits

...

2 Commits

Author SHA1 Message Date
Karol Stasiak
7b205a2754 Allow multiple -D options 2022-02-08 13:21:26 +01:00
Karol Stasiak
d23fe1756e Switch to snapshot versioning 2022-02-08 13:20:15 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
name := "millfork" name := "millfork"
version := "0.3.30" version := "0.3.31-SNAPSHOT"
// keep it at 2.12.11 for GraalVM native image compatibility! // keep it at 2.12.11 for GraalVM native image compatibility!
scalaVersion := "2.12.11" scalaVersion := "2.12.11"

View File

@ -499,7 +499,7 @@ object Main {
} else { } else {
errorReporting.fatal("Invalid syntax for -D option") errorReporting.fatal("Invalid syntax for -D option")
} }
}.description("Define a feature value for the preprocessor.") }.description("Define a feature value for the preprocessor.").maxCount(Integer.MAX_VALUE)
boolean("-finput_intel_syntax", "-finput_zilog_syntax").repeatable().action((c,v) => boolean("-finput_intel_syntax", "-finput_zilog_syntax").repeatable().action((c,v) =>
c.changeFlag(CompilationFlag.UseIntelSyntaxForInput, v) c.changeFlag(CompilationFlag.UseIntelSyntaxForInput, v)