linux-fedora.txt 620 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
Compiling KiCad on Fedora
=========================

First written: 2011-03-09

Lasted edited by: Jerry Jacobs <xor.gate.engineering@gmail.com>

Fedora 14
---------

First we need to install all the needed tools and libraries with yum. First
become root with su.

Then invoke yum:
yum install gcc gcc-c++ bzr cmake doxygen wxGTK-devel make

Create somewhere on your drive a kicad directory.

Then clone the bzr repository:
bzr checkout lp:kicad testing

then cd into the build directory
invoke cmake to generate the makefiles

cmake ../testing

If everything went well you should be able to build kicad with make.

make