$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Stephen Jackson (spjackson42_at_[hidden])
Date: 2006-05-22 16:38:38
On Mon, 2006-05-22 at 13:19 -0400, Sarah L. Conner wrote:
> Command line output follows:
>
> [sconner_at_inti 01:17 PM] ~/TorusSim-Repository/objects$ g++ -o ../
> a.out -lboost_program_options -ldl *.o
You need to list the libraries after the objects, i.e.
g++ -o a.out *.o -lboost_program_options -ldl
-- Stephen Jackson