when adding --extrapath=x currently x/lib64 is not added to the path which can break the build when dependencies are installed into /extra/path/lib64. In SConstruct, line 296 adding
env.Append( LIBPATH=[ x + "/lib64" ] )
resolves this
when adding --extrapath=x currently x/lib64 is not added to the path which can break the build when dependencies are installed into /extra/path/lib64. In SConstruct, line 296 adding
env.Append( LIBPATH=[ x + "/lib64" ] )
resolves this