YosysHQ / yosys

Yosys Open SYnthesis Suite
https://yosyshq.net/yosys/
ISC License
3.3k stars 860 forks source link

Nothing of abc folder contents at git clone https://github.com/YosysHQ/yosys.git #4394

Closed ysd375 closed 1 month ago

ysd375 commented 1 month ago

Version

current version

On which OS did this happen?

Linux

Reproduction Steps

When I git clone, there is no content in the abc folder.

So it raised an error such as a following picture. 2024-05-12 192947

I think it is wrong something git branch. Main page shows that like "abc @ 237d813 Add YosysHQ/abc as a submodule located in abc 4 days ago"

at main branch.

2024-05-12 192728

Please check it.

Expected Behavior

when I git clone it, it will exist the abc folder contents.

Actual Behavior

Nothing of abc folder contents at git clone of main branch.

KrystalDelusion commented 1 month ago

You need to call git submodule update --init in the Yosys directory, as the error in your image says. Check out git submodules documentation if you want to learn more about submodules. You can also call git clone --recurse-submodules to clone with submodules.