About codegen #7
-
Why does it crash when I open the codegen.exe file. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hello @xbh-sdju, To help you, please elaborate on what you were trying to do leading up to the issue with the codegen executable and provide any error message that you may have received. In what way did the executable crash? Also, please provide any information about your computer setup, such as CPU, RAM, and operating system. This info can help to narrow down the source of the problem. |
Beta Was this translation helpful? Give feedback.
-
In powershell, prefix the codegen command with By default, powershell doesn't search for commands/executables in current directory, so you need the In Windows cmd.exe, you don't usually need the |
Beta Was this translation helpful? Give feedback.
@xbh-sdju,
In powershell, prefix the codegen command with
.\
to let powershell know to look for codegen in the current directory. So:.\codegen
.\codegen -help
.\codegen netlist_filename
By default, powershell doesn't search for commands/executables in current directory, so you need the
.\
to get it to do so.In Windows cmd.exe, you don't usually need the
.\
prefix.