Difference between revisions of "Linux"

From sigrok
Jump to navigation Jump to search
m
m (Added fedora packages)
Line 10: Line 10:
* [http://www.libusb.org libusb] >= 1.0.5
* [http://www.libusb.org libusb] >= 1.0.5
* libzip >= 0.8
* libzip >= 0.8
* Python
* Qt + Qt Creator >= 4.5 (for building/editing the GUI)
* Qt + Qt Creator >= 4.5 (for building/editing the GUI)


== Installing the build-dependencies ==
== Installing the build-dependencies ==


On most Linux distributions there are pre-built packages for the sigrok dependencies (if not, you have to build the packages from source). On Debian/Ubuntu for example, the installation is as simple as:
On most Linux distributions there are pre-built packages for the sigrok dependencies (if not, you have to build the packages from source). The installation is as simple as:
 
on Debian/Ubuntu


  $ '''apt-get install git-core gcc libglib2.0-dev libusb-1.0-0-dev libzip-dev qtcreator qt4-designer qt4-dev-tools libqt4-dev'''
  $ '''apt-get install git-core gcc libglib2.0-dev libusb-1.0-0-dev libzip-dev qtcreator qt4-designer qt4-dev-tools libqt4-dev'''
on Fedora
$ '''yum install gcc-c++ libtool glib2-devel libusb1-devel libzip-devel qt-devel python-devel'''


== Building ==
== Building ==

Revision as of 14:55, 8 April 2010

sigrok-gui on Linux

This page describes how to build sigrok on Linux.

Requirements

  • git
  • gcc
  • libglib >= 2.0
  • libusb >= 1.0.5
  • libzip >= 0.8
  • Python
  • Qt + Qt Creator >= 4.5 (for building/editing the GUI)

Installing the build-dependencies

On most Linux distributions there are pre-built packages for the sigrok dependencies (if not, you have to build the packages from source). The installation is as simple as:

on Debian/Ubuntu

$ apt-get install git-core gcc libglib2.0-dev libusb-1.0-0-dev libzip-dev qtcreator qt4-designer qt4-dev-tools libqt4-dev

on Fedora

$ yum install gcc-c++ libtool glib2-devel libusb1-devel libzip-devel qt-devel python-devel

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