getStaticLibFiles(include_self: false) : ''; $cpp = $this instanceof MacOSLibraryBase ? '-lc++' : '-lstdc++'; $ac = UnixAutoconfExecutor::create($this) ->appendEnv([ 'CFLAGS' => "-I{$this->getIncludeDir()}", 'LDFLAGS' => "-L{$this->getLibDir()}", 'LIBS' => "{$static_libs} {$cpp}", ]) ->addConfigureArgs( '--without-python', '--without-crypto', '--without-debug', '--without-debugger', "--with-libxml-prefix={$this->getBuildRootPath()}", ); if (getenv('SPC_LD_LIBRARY_PATH') && getenv('SPC_LIBRARY_PATH')) { $ac->appendEnv([ 'LD_LIBRARY_PATH' => getenv('SPC_LD_LIBRARY_PATH'), 'LIBRARY_PATH' => getenv('SPC_LIBRARY_PATH'), ]); } $ac->configure()->make(); $this->patchPkgconfPrefix(['libexslt.pc', 'libxslt.pc']); $this->patchLaDependencyPrefix(); $AR = getenv('AR') ?: 'ar'; shell()->cd(BUILD_LIB_PATH) ->exec("{$AR} -t libxslt.a | grep '\\.a$' | xargs -n1 {$AR} d libxslt.a") ->exec("{$AR} -t libexslt.a | grep '\\.a$' | xargs -n1 {$AR} d libexslt.a"); } }