3
0
Fork 0
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:
Mohamed Gaber 2026-06-16 18:45:02 +03:00
parent 1d94aa6965
commit bd7c32f8a6
No known key found for this signature in database
5 changed files with 71 additions and 3 deletions

View file

@ -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 {