Conversation
|
Are you running DUNE on OpenBSD? What system are you using? Regarding the compilation error you mentioned. |
I'm trying to develop some Tasks on OpenBSD yes, but DUNE will run on Linux on our end application.
This did not fix the problem. Instead of using diff --git a/cmake/SystemLibraries.cmake b/cmake/SystemLibraries.cmake
index 512afa3..375a19b 100644
--- a/cmake/SystemLibraries.cmake
+++ b/cmake/SystemLibraries.cmake
@@ -67,4 +67,5 @@ macro(dune_probe_libs)
dune_test_lib(nsl inet_ntop)
dune_test_lib(dl dlopen)
dune_test_lib(intl gettext)
+ dune_add_lib(-L/usr/local/lib)
endmacro(dune_probe_libs)
|
I had to make this change to get DUNE to compile on OpenBSD. Perhaps you'd like to merge it.
On a related note, I had to run CMake as follows (OpenBSD libraries are installed under
/usr/local/lib):Otherwise, I would get the following error:
Not sure where I'd patch this in the CMake files.