Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Autoreconf failing when installing (py)COMPSs in a clusters

I tried to install pyCOMPSs (v1.4) on a Cluster system using the installation script for Supercomputers. The script terminates with the following error:

libtool: link: ranlib .libs/libcbindings.a
libtool: link: ( cd ".libs" && rm -f "libcbindings.la" && ln -s
"../libcbindings.la" "libcbindings.la" )
make[1]: Entering directory
`/home/xxx/repos/pycompss/COMPSs/Bindings/c/src/bindinglib'
  /usr/bin/mkdir -p
'/home/cramonco/svn/compss/framework/trunk/builders/specs/deb/compss-c-binding/tmp/opt/COMPSs/Bindings/c/lib'
/usr/bin/mkdir: cannot create directory ‘/home/cramonco’: Permission denied
make[1]: *** [install-libLTLIBRARIES] Error 1
make[1]: Leaving directory
`/home/xxx/xxx/repos/pycompss/COMPSs/Bindings/c/src/bindinglib'
make: *** [install-am] Error 2

BindingLib Installation failed, please check errors above!
like image 787
user6634308 Avatar asked Jul 26 '16 06:07

user6634308


People also ask

What is the latest version of autoreconf?

autoconf is already the newest version (2.69-9). 0 upgraded, 0 newly installed, 0 to remove and 26 not upgraded. What could be wrong? It's not about the autoreconf version, it's about the fact that you need one of the original configure.ac/in files. Are they present?

How do I get autoreconf?

So to get autoreconf you should install the autoconf package. As for why you're unable to find libmicrohttpd12, it definitely exists in the Buster repos at the time of writing.

How do I troubleshoot a failover cluster?

The first thing to do when troubleshooting, and something you should do every time you create a cluster is to run the Validate tool. To run cluster validation: Note: You can also use the Failover Clustering Windows PowerShell® cmdlet, Test-Cluster , to validate your cluster. Review any tests that report as Failed or Warning .

Where can I find the failed cluster creation process file?

The file can be found in the following location: C:\Windows\Cluster\Reports\CreateCluster.mht The admin level logging in the CreateCluster.mht file can help you determine the step at which the cluster creation process failed.


1 Answers

Seems the error is due to the package includes a previous configuration and in your case the autoreconf is not overwritting the Makefile and other files produced by autotools. try with running

cd /home/xxx/repos/pycompss/COMPSs/Bindings/c/src/bindinglib
make maintainer-clean 

After this run again the install command

like image 177
COMP Superscalar Avatar answered Sep 28 '22 08:09

COMP Superscalar