Setup.sh
apt
not installed error for Setup.sh
. Should add dnf
support. -> Added to local copy of Setup.sh
.
Error: Unable to find a match: binutils-dev libunwind-dev libdwarf-dev libdw-dev
. Find equivalents for dnf
. -> Added to local copy of Setup.sh
.Build.sh
Run.sh
Error: lib/libstdc++.so.6: version
GLIBCXX3.4.32' not found. I am using an older version of GCC. - Specify minimum GCC version somewhere? Either in
CMakeLists.txtor
Build.sh? - Add instructions to set environment variables
CCand
CXXto whatever
gccversion works and is installed in the user's system. E.g. ```bash export CC=/usr/bin/gcc-10 export CXX=/usr/bin/g++-10 ``` - If user has multiple
gccversions, make a symlink to the version of
libstdc++.so.6that supports
GLIBCXX
3.X.YZ`. E.g.
bash sudo ln -s /usr/lib64/libstdc++.so.6 /path/to/current/libstdc++/checked
- Error: PyBind
pybind11::handle::inc_ref() is being called while the GIL is either not held or invalid. Please see <https://pybind11.readthedocs.io/en/stable/advanced/misc.html#common-sources-of-global-interpreter-lock-errors> for debugging advice. If you are convinced there is no bug in your code, you can #define PYBIND11_NO_ASSERT_GIL_HELD_INCREF_DECREF to disable this check. In that case you have to ensure this #define is consistently used for all translation units linked into a given pybind11 extension, otherwise there will be ODR violations. The failing pybind11::handle::inc_ref() call was triggered on a module object. terminate called after throwing an instance of 'std::runtime_error' what(): pybind11::handle::inc_ref() PyGILState_Check() failure. ./Run.sh: line 7: 11424 Aborted
- TODO: Debugging needed. See this
## BrainGenix-NES
Setup.sh
dnf
cannot find a few dependencies (Error: Unable to find a match: libvulkan-dev vulkan-validationlayers-dev libxcb-xfixes0-dev libx11-dev libxrandr-dev
)Build.sh
/home/debajyotid2/Documents/GitLab/BG/BrainGenix-NES/Source/Core/Netmorph/NetmorphManagerThread.cpp:374:42: error: expected class-name before ‘{’ token
374 | class RegionBuild: public region_list_op {
| ^
Setup.sh
script encounters errors:
pip
and venv
git
pulls from vcpkgFollow these steps to successfully install: