On Sunday 03 January 2010 02:46:03 pm Tomasz Lekszycki wrote:
> $ make
> Makefile:151: Makefile.dep: No such file or directory
> ============================ Remaking Makefile.dep
> ==============optimized===== step-1.cc
> ============================ Linking step-1
> /usr/lib/slepc/linux-gnu-c-opt/lib/libslepc.so: undefined reference to
> `pdneupd_'
> /usr/lib/slepc/linux-gnu-c-opt/lib/libslepc.so: undefined reference to
> `pdnaupd_'
> /usr/lib/slepc/linux-gnu-c-opt/lib/libslepc.so: undefined reference to
> `pdsaupd_'
> /usr/lib/slepc/linux-gnu-c-opt/lib/libslepc.so: undefined reference to
> `pdseupd_'
> collect2: ld returned 1 exit status
> make: *** [step-1] Error 1
> 

Hi,
        for this specific error, you can try to add the LDFLAGS below, just 
after the clean target in the Makefile (line 129):

clean:
        -rm -f *.$(OBJEXT) *~ Makefile.dep $(target)$(EXEEXT) $(clean-up-files)

LDFLAGS += -lparpack

        This worked on a ubuntu system. For the trilinos error, you might 
also be missing the expat xml parser library (-lexpat).

                regards,
                                        Nuno


-- 
http://aeminium.org/slug/
_______________________________________________
dealii mailing list http://poisson.dealii.org/mailman/listinfo/dealii

Reply via email to