openFPGALoader/INSTALL.md

28 lines
408 B
Markdown
Raw Normal View History

2020-01-23 14:48:44 +01:00
# Install instructions
2020-11-04 20:29:28 +01:00
## Get the code from git project
```
$ git clone https://github.com/trabucayre/openFPGALoader.git
```
2020-01-23 14:48:44 +01:00
## Compile from source
2020-01-23 13:17:46 +01:00
```
$ mkdir build
$ cd build
$ cmake ../ # add -DBUILD_STATIC=ON to build a static version
# add -DENABLE_UDEV=OFF to disable udev support and -d /dev/xxx
2020-01-23 13:17:46 +01:00
$ cmake --build .
or
$ make -j$(nproc)
2020-01-23 14:45:15 +01:00
```
2020-11-04 20:28:37 +01:00
## Install
As root:
```
$ make install
```