mirror of
https://github.com/YosysHQ/yosys
synced 2026-07-19 21:55:48 +00:00
CMake: Linux fixes + Merge fallout fix
This commit is contained in:
parent
1d94aa6965
commit
bd7c32f8a6
5 changed files with 71 additions and 3 deletions
|
|
@ -156,6 +156,14 @@ struct AbcConfig
|
|||
int abc_max_node_retention_origins = 5; // number of node retention origins (default 5)
|
||||
std::string signal_map_file;
|
||||
std::string cdc_file;
|
||||
|
||||
bool is_yosys_abc() const {
|
||||
#ifdef ABCEXTERNAL
|
||||
return false;
|
||||
#else
|
||||
return exe_file == yosys_abc_executable;
|
||||
#endif
|
||||
}
|
||||
};
|
||||
|
||||
struct AbcSigVal {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue