Replies: 1 comment
-
Yes, the argument parser is flexible in what it accepts - but this is mostly for backwards compatibility. I would suggest using the more standard
|
Beta Was this translation helpful? Give feedback.
-
Yes, the argument parser is flexible in what it accepts - but this is mostly for backwards compatibility. I would suggest using the more standard
|
Beta Was this translation helpful? Give feedback.
-
Consider the following invocation, which comes from the Makefile of the Sail model for RISC-V.
where "..." represents the other flags.
sail --help explains
without mentioning -c_preserve.
Question 1: In general, if --xx-yy is a flag, then can we use it by specifying -xx_yy ?
Below is the explanation for --c-preserve.
Below are the only lines (in riscv_model_RV64.c) that contain _set_Misa_C.
Question 2: Should the explanation for --c-preserve be interpreted to mean "make sure all function identifiers with the provided suffix is preserved in C output"?
Beta Was this translation helpful? Give feedback.
All reactions