Could you add support for intel compiler, because currently it don't build The only thing it should be added is: if [[ ${CHOST} == *-darwin* ]] ; then compiler=darwin compilerVersion=$(gcc-fullversion) compilerExecutable=$(tc-getCXX) # we need to add the prefix, and in two cases this exceeds, so prepare # for the largest possible space allocation append-ldflags -Wl,-headerpad_max_install_names elif [ "$CC" = "icc" ]; then compiler=intel-linux compilerVersion=$(gcc-version) compilerExecutable=$(tc-getCXX) else compiler=gcc compilerVersion=$(gcc-version) compilerExecutable=$(tc-getCXX) fi Reproducible: Always
Created attachment 256616 [details] ebuild with working ICC support The suggested change isn't quite right. For one, it should be looking for "icpc" as the compiler (since Boost is C++), rather than "icc". Attached is a working ebuild.
Patches welcome