boschresearch / blech

Blech is a language for developing reactive, real-time critical embedded software.
Apache License 2.0
72 stars 5 forks source link

Option --app[=<name>] has optional '<name>' which defaults to 'blech' #23

Closed schorg closed 4 years ago

schorg commented 4 years ago

Option --app is now mandatory for app generation. The Argu library allows this only with an EqualsAssignment. Therefore the option --app changed:

blechc --help
...
 --app[=<name>]        generate '<name>.c' as main application, default is 'blech.c'.
...

Without the --app option no app is generated.