From: Jan H. <hue...@un...> - 2005-06-13 10:06:43
|
I tried to install MPICH 1.2.6 on a bproc-4.0.0pre8 system The configure was done with --with-comm=bproc When I compile I run into the following error undefined reference to 'bproc_gethostbyname' collect2: ld returned 1 exit status After a few more errrors the compiling end unsuccessful. Any help here would be appreciated. Jan. |
From: Jan H. <hue...@un...> - 2005-06-13 10:15:15
|
Sorry for the lack of information. Here it comes I tried to install MPICH 1.2.6 on a bproc-4.0.0pre8 system The configure was done with --with-comm=bproc When I compile I run into the following error /usr/local/src/mpich-1.2.6/lib/libmpich.a(p4_sock_cr.o)(.text+0x8fd): In function 'net_create_slave': :undefined reference to 'bproc_gethostbyname' collect2: ld returned 1 exit status After a few more errrors the compiling end unsuccessful. Any help here would be appreciated. Jan. |
From: Erik H. <eah...@gm...> - 2005-06-13 14:25:06
|
BProc isn't a communication layer - it's a process management system.=20 Clusters running BProc use P4 or GM or whatever is appropriate with mpich. The trick with BProc is the process start up. You'll need a patched mpich and a special mpirun program. This stuff is available at www.clustermatic.org. I suggest grabbing the packages from Clustermatic 5. - Erik On 6/13/05, Jan Huelsberg <hue...@un...> wrote: > Sorry for the lack of information. > Here it comes >=20 > I tried to install MPICH 1.2.6 on a bproc-4.0.0pre8 system > The configure was done with >=20 > --with-comm=3Dbproc >=20 > When I compile I run into the following error >=20 > /usr/local/src/mpich-1.2.6/lib/libmpich.a(p4_sock_cr.o)(.text+0x8fd): In > function 'net_create_slave': > :undefined reference to 'bproc_gethostbyname' > collect2: ld returned 1 exit status >=20 > After a few more errrors the compiling end unsuccessful. >=20 > Any help here would be appreciated. >=20 > Jan. >=20 >=20 >=20 >=20 > ------------------------------------------------------- > This SF.Net email is sponsored by: NEC IT Guy Games. How far can you sho= tput > a projector? How fast can you ride your desk chair down the office luge t= rack? > If you want to score the big prize, get to know the little guy. > Play to win an NEC 61" plasma display: http://www.necitguy.com/?r=3D20 > _______________________________________________ > BProc-users mailing list > BPr...@li... > https://lists.sourceforge.net/lists/listinfo/bproc-users > |
From: Rene S. <rs...@tu...> - 2005-06-13 15:38:08
|
Hi, Is there just a patched mpich tar ball available for download? I am not very familiar with building RPMS from source. We installed the MPICH binary RPMS but they are not doing exactly what we want. For example we would like to compile MPICH with the intel compilers and also add the intel fortran to mpif77. Thanks Rene Erik Hendriks wrote: > BProc isn't a communication layer - it's a process management system. > Clusters running BProc use P4 or GM or whatever is appropriate with > mpich. The trick with BProc is the process start up. You'll need a > patched mpich and a special mpirun program. This stuff is available > at www.clustermatic.org. I suggest grabbing the packages from > Clustermatic 5. > > - Erik > > On 6/13/05, Jan Huelsberg <hue...@un...> wrote: > >>Sorry for the lack of information. >>Here it comes >> >>I tried to install MPICH 1.2.6 on a bproc-4.0.0pre8 system >>The configure was done with >> >>--with-comm=bproc >> >>When I compile I run into the following error >> >>/usr/local/src/mpich-1.2.6/lib/libmpich.a(p4_sock_cr.o)(.text+0x8fd): In >>function 'net_create_slave': >>:undefined reference to 'bproc_gethostbyname' >>collect2: ld returned 1 exit status >> >>After a few more errrors the compiling end unsuccessful. >> >>Any help here would be appreciated. >> >>Jan. >> >> >> >> >>------------------------------------------------------- >>This SF.Net email is sponsored by: NEC IT Guy Games. How far can you shotput >>a projector? How fast can you ride your desk chair down the office luge track? >>If you want to score the big prize, get to know the little guy. >>Play to win an NEC 61" plasma display: http://www.necitguy.com/?r=20 >>_______________________________________________ >>BProc-users mailing list >>BPr...@li... >>https://lists.sourceforge.net/lists/listinfo/bproc-users >> > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: NEC IT Guy Games. How far can you shotput > a projector? How fast can you ride your desk chair down the office luge track? > If you want to score the big prize, get to know the little guy. > Play to win an NEC 61" plasma display: http://www.necitguy.com/?r > _______________________________________________ > BProc-users mailing list > BPr...@li... > https://lists.sourceforge.net/lists/listinfo/bproc-users -- - -- Rene Salmon Tulane University Center for Computational Science Richardson Building 310 New Orleans, LA 70118 http://www.ccs.tulane.edu Tel 504-862-8393 Fax 504-862-8392 |
From: Andrew S. <ag...@gm...> - 2005-06-13 16:04:20
|
You can get the tar ball from the source rpm with the following command: rpm -ivh <source rpm> Then look in /usr/src/redhat/SOURCES (or /usr/src/packages/SOURCES on SuSE) Note that in general, source rpms will patch the original tarball. To get a patched source from the source rpm you would follow 'rpm -i' with: cd /usr/src/redhat rpmbuild -bp SPECS/<package name>.spec The bp options stand for build preparation stage. You will find the patched source in: /usr/src/redhat/BUILD You should also look in the spec file to see how the package is being built= . Finally, you should be able to use any compiler you want to with the rpmbuild process and a proper spec file. I highly recommend learning more about rpms if you manage any number of systems. Andrew On 6/13/05, Rene Salmon <rs...@tu...> wrote: > Hi, >=20 > Is there just a patched mpich tar ball available for download? > I am not very familiar with building RPMS from source. >=20 > We installed the MPICH binary RPMS but they are not doing exactly what=20 > we want. For example we would like to compile MPICH with the intel=20 > compilers and also add the intel fortran to mpif77. >=20 > Thanks > Rene --=20 Andrew Shewmaker |
From: Erik H. <eah...@gm...> - 2005-06-13 16:33:44
|
On 6/13/05, Andrew Shewmaker <ag...@gm...> wrote: > You can get the tar ball from the source rpm with the following command: >=20 > rpm -ivh <source rpm> rpm2cpio is handy too. The tarballs won't be pre-patched but the tarballs, patches and intstructions (in the form of an rpm spec file) will be there. - Erik |