You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After running sudo make eda_install, the following is the last that is output to the terminal:
/usr/bin/install -c -m 644 iverilog.man "/opt/eda/share/man/man1/iverilog.1"
/usr/bin/install -c ./iverilog "/opt/eda/bin/iverilog"
make[1]: Leaving directory '/home/yotasage/pro/aicex/tests/iverilog/driver'
make[1]: Leaving directory '/home/yotasage/pro/aicex/tests'
make yosys_install
make[1]: Entering directory '/home/yotasage/pro/aicex/tests'
cd yosys && sudo make PREFIX=/opt/eda install
[Makefile.conf] CONFIG := gcc
Error: 'abc' is not configured as a git submodule.
To resolve this:
1. Back up your changes: Save any modifications from the 'abc' directory to another location.
2. Remove the existing 'abc' directory: Delete the 'abc' directory and all its contents.
3. Initialize the submodule: Run 'git submodule update --init' to set up 'abc' as a submodule.
4. Reapply your changes: Move your saved changes back to the 'abc' directory, if necessary.
make: *** [Makefile:769: check-git-abc] Error 1
make[1]: *** [Makefile:360: yosys_install] Error 2
make[1]: Leaving directory '/home/yotasage/pro/aicex/tests'
make: *** [Makefile:96: eda_install] Error 2
When running sudo make yosys_install, the same error occurs.
yotasage@VMware-Ubuntu:~/pro/aicex/tests$ sudo make yosys_install
cd yosys && sudo make PREFIX=/opt/eda install
[Makefile.conf] CONFIG := gcc
Error: 'abc' is not configured as a git submodule.
To resolve this:
1. Back up your changes: Save any modifications from the 'abc' directory to another location.
2. Remove the existing 'abc' directory: Delete the 'abc' directory and all its contents.
3. Initialize the submodule: Run 'git submodule update --init' to set up 'abc' as a submodule.
4. Reapply your changes: Move your saved changes back to the 'abc' directory, if necessary.
make: *** [Makefile:769: check-git-abc] Error 1
make: *** [Makefile:360: yosys_install] Error 2
When running make yosys_install, everything works fine.
Recommended that anyone who encounters this error edits the file "Makefile" inside the "tests" folder. Remove make yosys_install from under eda_install:.
The text was updated successfully, but these errors were encountered:
After running
sudo make eda_install
, the following is the last that is output to the terminal:When running
sudo make yosys_install
, the same error occurs.When running
make yosys_install
, everything works fine.Recommended that anyone who encounters this error edits the file "Makefile" inside the "tests" folder. Remove
make yosys_install
from undereda_install:
.The text was updated successfully, but these errors were encountered: