[Bug 252379] Mk/Uses/compiler.mk: remove USE_GCC=yes for compiler:openmp due to libomp.so is part of base since 11.3/12.1

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Mon Jan 11 19:39:18 UTC 2021


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252379

--- Comment #35 from Christoph Moench-Tegeder <cmt at freebsd.org> ---
(In reply to Joseph Mingrone from comment #32)

The problem with iqtree is that is ships with their private libomp (among
others) - precompiled on Linux as lib/libomp.a (there'S also Windows and Mac
versions of that, and 32bit version in lib32). That's a stunningly horrible
idea...

Try someting along these lines as files/patch-CMakeLists.txt:
--- CMakeLists.txt.orig 2021-01-11 20:24:32.584318000 +0100
+++ CMakeLists.txt      2021-01-11 20:26:49.293185000 +0100
@@ -323,12 +323,12 @@

     if(CLANG AND APPLE)
         link_directories(${PROJECT_SOURCE_DIR}/libmac)
-    elseif (WIN32 OR UNIX)
-        if (BINARY32)
-            link_directories(${PROJECT_SOURCE_DIR}/lib32)
-        else()
-            link_directories(${PROJECT_SOURCE_DIR}/lib)
-        endif()
+#    elseif (WIN32 OR UNIX)
+#        if (BINARY32)
+#            link_directories(${PROJECT_SOURCE_DIR}/lib32)
+#        else()
+#            link_directories(${PROJECT_SOURCE_DIR}/lib)
+#        endif()
     endif()

     if (VCC)


That makes the port compile with clang for me (but I can't do any runtime
tests)

-- 
You are receiving this mail because:
You are on the CC list for the bug.


More information about the freebsd-gnome mailing list