improvements

This commit is contained in:
Éder F. Zulian
2017-12-07 17:56:56 +01:00
parent 1ebef99bf1
commit ea23659579
2 changed files with 7 additions and 23 deletions

View File

@@ -107,30 +107,14 @@ $ bash getqwt.sh
For further information refer to [this](http://qwt.sourceforge.net/) For further information refer to [this](http://qwt.sourceforge.net/)
- python3.5 or 3.6 - python3.5 or 3.6 and other dependencies
In Debian like distros: You can use [install.sh](./install.sh) in order to install dependencies. First
read and understand the script than execute it.
```bash
$ sudo apt-get install python3.5 python3.5-dev
```
- Others ```bash
$ bash install.sh
Some basic libraries may be already installed in your system. If not you can ```
install the following packages or equivalent ones for your distro. In Debian
like distros:
```bash
$ sudo apt-get install libc6
$ sudo apt-get install libstdc++6
$ sudo apt-get install sqlite3
$ sudo apt-get install libsqlite3-dev
$ sudo apt-get install libqt5gui5
$ sudo apt-get install libqt5sql5
$ sudo apt-get install libqt5widgets5
$ sudo apt-get install libqt5core5a
```
To grant flexibility to the user the paths where to find some essential To grant flexibility to the user the paths where to find some essential
libraries and headers can be specified with environment variables. You can add libraries and headers can be specified with environment variables. You can add

View File

@@ -86,4 +86,4 @@ echo "# SystemC home" >> ~/.bashrc
echo "SYSTEMC_HOME=$dest/$sysc" >> ~/.bashrc echo "SYSTEMC_HOME=$dest/$sysc" >> ~/.bashrc
echo "# SystemC target architecture" >> ~/.bashrc echo "# SystemC target architecture" >> ~/.bashrc
echo "SYSTEMC_TARGET_ARCH=linux$arch" >> ~/.bashrc echo "SYSTEMC_TARGET_ARCH=linux$arch" >> ~/.bashrc
echo "LD_LIBRARY_PATH=\${LD_LIBRARY_PATH}:\${SYSTEMC_HOME}/lib-$arch" >> ~/.bashrc echo "LD_LIBRARY_PATH=\${LD_LIBRARY_PATH}:\${SYSTEMC_HOME}/lib-linux$arch" >> ~/.bashrc