c++

  1. jrm@

    dlopen error

    I'm working on porting a C++ application to FreeBSD. It's compiling, but a call to dlopen() is failing. Here's a code snippet. static void *lib=NULL; lib=dlopen(filename,RTLD_NOW); const char* blah; if(blah=dlerror()) { info(filename); cout << blah << "\n"; } The output is...
  2. fender0107401

    Solved FreeBSD and CMake: compilation is fine but end up with linking errors.

    System info: uname -a FreeBSD vm-freebsd 10.2-RELEASE-p7 FreeBSD 10.2-RELEASE-p7 #0: Mon Nov 2 14:19:39 UTC 2015 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 % cmake --version cmake version 3.4.1 CMake suite maintained and supported by Kitware (kitware.com/cmake)...
Back
Top