Boost logo

Ublas :

From: Andreas Klöckner (lists_at_[hidden])
Date: 2008-04-12 23:42:24


On Samstag 12 April 2008, e r wrote:
> g++ -L/usr/local/atlas/lib -o"testing_numeric_bindings_chol" ./main.o
> -latlas -lcblas -lf77blas -llapack -lptcblas -lptf77blas

Careful here: Order of the -l switches matters. The more "basic" libraries
need to be at the end. You likely don't want the -lpt* stuff, at least for
now.

Use this order: -llapack -lf77blas (optional: -lcblas) -latlas.

Andreas