openFPGALoader/INSTALL.md

14 lines
258 B
Markdown
Raw Normal View History

2020-01-23 14:48:44 +01:00
# Install instructions
## 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
```