Closed nickbabcock closed 5 years ago
I'm not entirely sure to be honest. The project does need to run the build sequentially as I haven't set up the makefile properly yet, Could you try make clean && make RELEASE=1
without the -j param? The makefile is set up to build the cpprp+cpprpjson and will write the binary to ./build/test.
Alternatively, maybe it's an older g++ version? Although probably not since you didn't get any compile errors, I'm using g++-9 to compile the project.
The makefile is set up to build the cpprp+cpprpjson and will write the binary to ./build/test
Ah I didn't realize that the test
executable was the right one, thank you -- it's working now.
Hey I'm trying to get a feel of the output for CPPRP-JSON, but I'm having a few issues compiling.
Executes just fine, but the issue is that the following line is what is executed for
CPPRP-JSON
The
-c
is the problem, afaik. Dropping it as an argument should create an executable because as of right now it does not create a executable:I manually executed g++ without the
-c
and received a few compilation errors:Anyways just curious if it's obvious what I'm doing wrong.
Cheers.