Remove conan dependency

This commit is contained in:
2021-05-18 16:33:29 +02:00
parent 0fcd9f4865
commit 6ed7d882c9
19 changed files with 25 additions and 49 deletions

View File

@@ -8,8 +8,6 @@ A simple C++/SystemC/CMake project to test pysysc
```
pip install conan
conan remote add minres https://api.bintray.com/conan/minres/conan-repo
cd PySysC-SC
mkdir build
cd build
@@ -18,15 +16,4 @@ cmake -DBUILD_SHARED_LIBS=ON ..
cmake --build .
```
## Notes
If you encounter issues when linking wrt. c++11 symbols you might have run into GCC ABI incompatibility introduced from GCC 5.0 onwards. You can fix this by adding '-s compiler.libcxx=libstdc++11' to the conan call or changing compiler.libcxx to
```
compiler.libcxx=libstdc++11
```
in $HOME/.conan/profiles/default or run
```
conan profile update settings.compiler.libcxx=libstdc++11 default
```