I am using ports-mgmt/poudriere-devel to build packages for my machines.
I have set the compiler to use clang as in http://forums.freebsd.org/showthread.php?t=38859. Most ports build ok, but there are some that are not built correctly. These problems seem to have been identified already, and there are workarounds for the clang-problem, which work when I build the port directly.
One such example is graphics/opencv-core
My make.conf for the poudriere builds is
Has anyone seen anything similar? Is there a way to specify that certain ports should be built with an alternative compiler, everything builds fine when using gcc.
I have set the compiler to use clang as in http://forums.freebsd.org/showthread.php?t=38859. Most ports build ok, but there are some that are not built correctly. These problems seem to have been identified already, and there are workarounds for the clang-problem, which work when I build the port directly.
One such example is graphics/opencv-core
My make.conf for the poudriere builds is
Code:
CC=clang
CXX=clang++
CPP=clang-cpp
DEFAULT_VERSIONS= perl5=5.16
Has anyone seen anything similar? Is there a way to specify that certain ports should be built with an alternative compiler, everything builds fine when using gcc.