Updated README.md
This commit is contained in:
parent
e899915615
commit
878911f4e1
23
README.md
23
README.md
|
@ -51,7 +51,24 @@ CONAN_USERNAME=<username> CONAN_CHANNEL=<channel name> python build.py
|
||||||
to build a specific variant run the following command
|
to build a specific variant run the following command
|
||||||
|
|
||||||
```
|
```
|
||||||
conan create . SystemCVerification/2.0.1a@minres/<channel name> -o stdcxx=<c++ std variant> -s build_type=<build type>
|
conan create . SystemCVerification/2.0.1@minres/<channel name> -o stdcxx=<c++ std variant> -s build_type=<build type>
|
||||||
|
```
|
||||||
|
|
||||||
|
where <c++ std variant> is one of 98, 11, or 14
|
||||||
|
|
||||||
|
## SystemC Configuration, Control and Inspection (CCI) library
|
||||||
|
|
||||||
|
download the SystemC CCI distribution from http://www.accellera.org/downloads/standards/systemc and unpack into the SystemC-CCI directory
|
||||||
|
|
||||||
|
```
|
||||||
|
cd SystemC-CCI
|
||||||
|
CONAN_USERNAME=<username> CONAN_CHANNEL=<channel name> python build.py
|
||||||
|
```
|
||||||
|
|
||||||
|
to build a specific variant run the following command
|
||||||
|
|
||||||
|
```
|
||||||
|
conan create . SystemC-CCI/0.9.0@minres/<channel name> -o stdcxx=<c++ std variant> -s build_type=<build type>
|
||||||
```
|
```
|
||||||
|
|
||||||
where <c++ std variant> is one of 98, 11, or 14
|
where <c++ std variant> is one of 98, 11, or 14
|
||||||
|
@ -62,3 +79,7 @@ Uploading can be done using
|
||||||
```
|
```
|
||||||
conan upload <package name>/<package version>@<user name>/<channel> --all -r=<remote name>
|
conan upload <package name>/<package version>@<user name>/<channel> --all -r=<remote name>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
# Problems
|
||||||
|
|
||||||
|
If you are going to build the packages under Linux using gcc you might run into linker issues. You can try to fix this by setting a the C++11 libstdc++. This can be done by adding `-s compiler.libcxx=libstdc++11` to the package build calls.
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
/cci-0.9.0*
|
Loading…
Reference in New Issue