1
1
mirror of https://github.com/anoma/juvix.git synced 2024-11-30 14:13:27 +03:00

Add nockma as a valid target for the tree compile command (#2630)

This allows us to do `juvix dev tree compile --target nockma test.jvt`.
The pipeline was already implemented, this pr only adds the
`TargetNockma` to the list of supported backends so that the cli
recognizes it.
This commit is contained in:
Jan Mas Rovira 2024-02-08 19:18:58 +01:00 committed by GitHub
parent fe606176f6
commit 5dfafe00d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,7 +12,8 @@ treeSupportedTargets =
nonEmpty'
[ TargetWasm32Wasi,
TargetNative64,
TargetAsm
TargetAsm,
TargetNockma
]
parseTreeCompileOptions :: Parser CompileOptions