Difference between revisions of "FreeBSD"

From sigrok
Jump to navigation Jump to search
m
m
 
(23 intermediate revisions by 4 users not shown)
Line 1: Line 1:
This page describes how to build/install sigrok on FreeBSD.
This page describes how to build/install the sigrok subprojects on [http://www.freebsd.org FreeBSD].
 
The instructions were tested on FreeBSD 10.3, older versions may or may not have the required libs/versions to build sigrok.


== Distribution packages ==
== Distribution packages ==


There are no FreeBSD packages/ports yet, contributors welcome!
FreeBSD packages/ports are available, see the [[Downloads#Binaries_and_distribution_packages|Downloads]] page.
 
== Building ==
 
=== libsigrok ===
 
'''Installing the [[Building#Build_requirements|requirements]]:'''
 
$ '''pkg install git autoconf autoconf-archive automake libtool pkgconf glib libzip libftdi1 libcheck doxygen swig30 ruby python py27-numpy py27-setuptools py27-gobject3 openjdk-7.101.00_1,1'''
 
'''Building:'''
 
$ '''git clone git://sigrok.org/libsigrok'''
$ '''cd libsigrok'''
$ '''./autogen.sh'''
$ '''./configure --with-jni-include-path=/usr/local/openjdk7/include'''
$ '''make'''
$ '''sudo make install'''
 
=== libsigrokdecode ===
 
'''Installing the [[Building#Build_requirements|requirements]]:'''
 
$ '''pkg install python3'''
 
'''Building:'''


== Building from source ==
$ '''git clone git://sigrok.org/libsigrokdecode'''
$ '''cd libsigrokdecode'''
$ '''./autogen.sh'''
$ '''./configure'''
$ '''make'''
$ '''sudo make install'''


=== Requirements ===
=== sigrok-firmware-fx2lafw ===


* git (for cloning the source code repository)
'''Installing the [[Building#Build_requirements|requirements]]:'''
* gcc, g++, make, ...
* autoconf, automake, libtool, pkg-config
* [http://library.gnome.org/devel/glib/unstable/ libglib] >= 2.0
* libusb-1.0 (this is an integral part of FreeBSD, not an extra package/library, though)
* [http://nih.at/libzip/ libzip] >= 0.8
* [http://www.intra2net.com/en/developer/libftdi/ libftdi] (optional, only required for some devices)
* [http://www.python.org Python] >= 2.5 (optional, only required for protocol decoders)
* [http://qt.nokia.com Qt + Qt Creator] >= 4.5 (optional, only required for building/editing the GUI)


=== Installing the build-dependencies ===
$ '''pkg install sdcc'''


$ '''pkg_add -r git autoconf262 automake110 libtool pkg-config glib20 libzip libftdi qt4 qt4-qmake qt4-moc qt4-rcc qt4-uic'''
'''Building:'''


=== Building ===
$ '''git clone git://sigrok.org/sigrok-firmware-fx2lafw'''
$ '''cd sigrok-firmware-fx2lafw'''
$ '''./autogen.sh'''
$ '''./configure'''
$ '''make'''
$ '''sudo make install'''


  $ '''git clone git://sigrok.git.sourceforge.net/gitroot/sigrok/sigrok'''
=== sigrok-cli ===
  $ '''cd sigrok'''
 
'''Building:'''
 
  $ '''git clone git://sigrok.org/sigrok-cli'''
  $ '''cd sigrok-cli'''
  $ '''./autogen.sh'''
  $ '''./autogen.sh'''
  $ '''./configure'''
  $ '''./configure'''
  $ '''make'''
  $ '''make'''
  $ '''make install'''
  $ '''sudo make install'''
 
=== PulseView ===
 
'''Installing the [[Building#Build_requirements|requirements]]:'''
 
$ '''pkg install cmake qt4 qt4-qmake qt4-moc qt4-rcc qt4-uic boost-libs'''


Then, for building the [[GUI]] ('''Note:''' The GUI is not yet usable!):
'''Building:'''


  $ '''cd gui'''
$ '''git clone git://sigrok.org/pulseview'''
  $ '''qmake-qt4'''
  $ '''cd pulseview'''
  $ '''cmake .'''
  $ '''make'''
  $ '''make'''
$ '''sudo make install'''
'''Hint''': If something goes wrong, you can see what cmake is doing by running:
$ '''cmake VERBOSE=1'''

Latest revision as of 21:52, 16 August 2016

This page describes how to build/install the sigrok subprojects on FreeBSD.

The instructions were tested on FreeBSD 10.3, older versions may or may not have the required libs/versions to build sigrok.

Distribution packages

FreeBSD packages/ports are available, see the Downloads page.

Building

libsigrok

Installing the requirements:

$ pkg install git autoconf autoconf-archive automake libtool pkgconf glib libzip libftdi1 libcheck doxygen swig30 ruby python py27-numpy py27-setuptools py27-gobject3 openjdk-7.101.00_1,1

Building:

$ git clone git://sigrok.org/libsigrok
$ cd libsigrok
$ ./autogen.sh
$ ./configure --with-jni-include-path=/usr/local/openjdk7/include
$ make
$ sudo make install

libsigrokdecode

Installing the requirements:

$ pkg install python3

Building:

$ git clone git://sigrok.org/libsigrokdecode
$ cd libsigrokdecode
$ ./autogen.sh
$ ./configure
$ make
$ sudo make install

sigrok-firmware-fx2lafw

Installing the requirements:

$ pkg install sdcc

Building:

$ git clone git://sigrok.org/sigrok-firmware-fx2lafw
$ cd sigrok-firmware-fx2lafw
$ ./autogen.sh
$ ./configure
$ make
$ sudo make install

sigrok-cli

Building:

$ git clone git://sigrok.org/sigrok-cli
$ cd sigrok-cli
$ ./autogen.sh
$ ./configure
$ make
$ sudo make install

PulseView

Installing the requirements:

$ pkg install cmake qt4 qt4-qmake qt4-moc qt4-rcc qt4-uic boost-libs

Building:

$ git clone git://sigrok.org/pulseview
$ cd pulseview
$ cmake .
$ make
$ sudo make install

Hint: If something goes wrong, you can see what cmake is doing by running:

$ cmake VERBOSE=1