Jonathon LeFaive

Results 174 comments of Jonathon LeFaive

You didn't correctly configure the toolchain file. If you haven't already created a `build` directory, create it. Otherwise, clear the directory (`rm -r build/*`). Then run `cmake -DCMAKE_TOOLCHAIN_FILE=../cget/cget/cget.cmake -DCMAKE_BUILD_TYPE=Release ..`...

You could verify that `cget/share/savvy/savvy-config.cmake` exists and manually set the prefix path (the toolchain file already does this) with `-DCMAKE_PREFIX_PATH=$(pwd)/cget` (i.e., set prefix path to absolute path of cget directory)....

The downloads from Github are failing. This could be for many reasons. It could be at system level or at python level. There are many potential solutions for this error...

It looks like your cmake binary was built either on a different system or in a different environment on the same system. At this point it would probably be easier...

Replace `return false;` with `return;`.

On which OS are you building?

So adding "-L/tools/lib" solved your problem then? Or are you still getting errors when building the tests?

Try removing the cget directory in the base of the Minimac 4 source, running `export CFLAGS="-fPIC"`, and then rerunning cget, cmake, and make.

Alternatively, you might be able to just run `export CFLAGS="-no-pie" && make clean && make` from the build directory.

These link errors you are experiencing suggest that Minimac4 and libStatGen are being built with different compilers. You could try running `export CFLAGS="-fPIC -D_GLIBCXX_USE_CXX11_ABI=0" && make`. If that doesn't work,...