Issue
Trustbase won't compile so I can run it on my machine. I believe it is because the installer didn't install the dependencies needed to run trustbase.
Reproduction
I am running on a Fedora 29 machine.
I cloned the repository and tried installing the packages.
After installing, I run make
I get the following errors
9 [pbstrein@ilab3 trustbase-linux]$ make
10 gcc -Wall -O3 -fpic -g -c policy-engine/netlink.c -I/usr/include/libnl3 -I/usr/include/python2.7 -o policy-engine/netlink.o
11 policy-engine/netlink.c:4:10: fatal error: sqlite3.h: No such file or directory
12 #include <sqlite3.h>
13 ^~~~~~~~~~~
14 compilation terminated.
15 make: *** [Makefile:138: policy-engine/netlink.o] Error 1
Recommended Solution
Turns out the installer.sh wasn't installing the right packages for me because it couldn't find one of the packages. Turns out that if it cannot find one package, it will not install any of them. I need to figure out how to make it go through each package independently. Maybe adding the --skip-broken flag to the command will help.
Issue
Trustbase won't compile so I can run it on my machine. I believe it is because the installer didn't install the dependencies needed to run trustbase.
Reproduction
I am running on a Fedora 29 machine.
I cloned the repository and tried installing the packages.
After installing, I run
makeI get the following errors
Recommended Solution
Turns out the installer.sh wasn't installing the right packages for me because it couldn't find one of the packages. Turns out that if it cannot find one package, it will not install any of them. I need to figure out how to make it go through each package independently. Maybe adding the
--skip-broken flagto the command will help.