added way to get sysroot with wget

This commit is contained in:
Robin Müller 2021-05-24 01:49:17 +02:00
parent 3c41991896
commit 76a4d63d9d

View File

@ -89,7 +89,14 @@ C++ applications. Alternatively you can download the toolchain
## Getting the Q7S system root
It is necessary to copy the Q7S system root to your local development machine for libraries
like `libgpio`. You can find the system root [here](https://eive-cloud.irs.uni-stuttgart.de/index.php/apps/files/?dir=/EIVE_IRS/Arbeitsdaten/08_Used%20Components/Q7S/Toolchain&fileid=422486). Download it and unzip it somewhere in the Xilinx installation folder.
like `libgpio`. You can find the system root for download here
[here](https://eive-cloud.irs.uni-stuttgart.de/index.php/apps/files/?dir=/EIVE_IRS/Arbeitsdaten/08_Used%20Components/Q7S/Toolchain&fileid=422486).
Download it and unzip it somewhere in the Xilinx installation folder.
You can use the following command if `wget` can be used or for CI/CD:
```
wget https://eive-cloud.irs.uni-stuttgart.de/index.php/s/3LaJwNTjJ882nCe/download/cortexa9hf-neon-xiphos-linux-gnueabi-sysroot.zip
```
Then, create a new environmental variables `Q7S_SYSROOT` and set it to the local system root path.