Difference between revisions of "Linux"
Jump to navigation
Jump to search
Uwe Hermann (talk | contribs) (Linux instructions.) |
Uwe Hermann (talk | contribs) m |
||
Line 7: | Line 7: | ||
* git | * git | ||
* gcc | * gcc | ||
* libusb | * [http://www.libusb.org libusb] >= 1.0.5 | ||
* libglib | * libglib | ||
* libzip | |||
* Qt + Qt Creator >= 4.5 (for building/editing the GUI) | * Qt + Qt Creator >= 4.5 (for building/editing the GUI) | ||
Line 18: | Line 19: | ||
$ '''make''' | $ '''make''' | ||
$ '''make install''' | $ '''make install''' | ||
Then, for building the GUI: | |||
$ '''cd frontends/gui''' | |||
$ '''qmake''' | |||
$ '''make''' |
Revision as of 13:47, 18 March 2010
This page describes how to build sigrok on Linux.
Requirements
- git
- gcc
- libusb >= 1.0.5
- libglib
- libzip
- Qt + Qt Creator >= 4.5 (for building/editing the GUI)
Building
$ git clone git://sigrok.git.sourceforge.net/gitroot/sigrok/sigrok $ cd sigrok $ ./autogen.sh $ make $ make install
Then, for building the GUI:
$ cd frontends/gui $ qmake $ make