-
Notifications
You must be signed in to change notification settings - Fork 0
Getting started
Davide edited this page Feb 15, 2019
·
4 revisions
In this first section of the wiki, I'll explain how to install and use pargvc
- Clone the repo
- Head to the src directory
- Run the following command:
make installib
This will compile pargvc as a static library, and will put libpargvc.a
in /usr/lib/,
and pargvc.h
in /usr/include/
To include pargvc in your C code, add the line #include <pargvc.h>
where needed. At this point you'll be able
to use every function included with the version you installed.
When compiling with gcc, add the -lpargvc
flag to the command, after the files that use pargvc.