Bug#522287: [Pkg-scicomp-devel] Bug#522287: Bug#522287: [petsc] fail to execute code linked with petsc

2009-05-13 Thread Adam C Powell IV
Oops. Forgot to check pkg-scicomp svn *before* uploading. Christophe, I'll add your change as -3. Sorry about that! -Adam On Wed, 2009-05-13 at 09:33 -0400, Adam C Powell IV wrote: > tags 522287 -unreproducible > thanks > > Hmm, make testexamples is not working for me either now, so I'm going

Bug#522287: [Pkg-scicomp-devel] Bug#522287: Bug#522287: [petsc] fail to execute code linked with petsc

2009-05-13 Thread Adam C Powell IV
tags 522287 -unreproducible thanks Hmm, make testexamples is not working for me either now, so I'm going to disable the "dynamic" libraries. I'll test in a few minutes, and upload sometime today with fixes for this and a bunch of other bugs. -Adam On Wed, 2009-05-13 at 08:50 -0400, Adam C Powel

Bug#522287: [Pkg-scicomp-devel] Bug#522287: Bug#522287: [petsc] fail to execute code linked with petsc

2009-05-13 Thread Adam C Powell IV
I see. This is very annoying. I generally have to jump through a couple of hoops to make this work with each new version, and thought I had it working fine... Can you try building/running the tests as described in README.Debian? It's pretty easy, just install petsc3.0.0-doc, unpack src.tar.gz, c

Bug#522287: [Pkg-scicomp-devel] Bug#522287: Bug#522287: [petsc] fail to execute code linked with petsc

2009-05-13 Thread Johannes Ring
Hi, I have the same problem as Christophe. I created a makefile for Christophe's simple code (t.cpp) by adapting one of the makefiles from the PETSc examples. My makefile looks like this: include ${PETSC_DIR}/conf/base t: t.o chkopts -${CLINKER} -o t t.o ${PETSC_LIB} ${RM} -f t.o

Bug#522287: [Pkg-scicomp-devel] Bug#522287: [petsc] fail to execute code linked with petsc

2009-05-12 Thread Christophe Prud'homme
Hi Adam thanks for the heads up :) until 3.0 I never had to set PETSC_DIR and PETSC_ARCH, it was working out of the box. The other problem is that it affects slepc too. What I do at the moment is use 2.3.3 which works without problems, I just had to recompile with the newest openmpi I will look

Bug#522287: [petsc] fail to execute code linked with petsc

2009-05-12 Thread Adam C Powell IV
severity 522287 important tags 522287 unreproducible thanks Hi Christophe, Sorry about the delay, I'm accustomed to getting bugs via email, and only just subscribed to the PTS. I'm afraid I can't reproduce this. Did you set PETSC_DIR and PETSC_ARCH as described in README.Debian? I'm afraid PET

Bug#522287: [petsc] fail to execute code linked with petsc

2009-04-02 Thread Christophe Prud'homme
Package: petsc Version: 3.0.0 Severity: serious --- Please enter the report below this line. --- here is a simple code #include int main( int argc, char** argv ) { PetscInitialize( &argc, &argv, 0, 0 ); } now compile it like this: g++ -I/usr/include/mpi -I/usr/include/petsc -o t t.cpp -lp