3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-05-17 23:49:29 +00:00

Update documentation and few more defines

This commit is contained in:
Miodrag Milanovic 2026-05-13 11:24:45 +02:00
parent 25459bd8b9
commit 1ef6311e5b
6 changed files with 7 additions and 7 deletions

View file

@ -376,7 +376,7 @@ class PyosysWrapperGenerator(object):
def make_preprocessor_options(self):
py_include = get_paths()["include"]
preprocessor_bin = shutil.which("clang++") or "g++"
cxx_std = os.getenv("CXX_STD", "c++17")
cxx_std = os.getenv("CXX_STD", "c++20")
return ParserOptions(
preprocessor=make_gcc_preprocessor(
defines=["_YOSYS_", "YOSYS_ENABLE_PYTHON"],