$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] linking to boost thread exposes static initialisation order fiasco in ublas?
From: Zeljko Vrba (zvrba_at_[hidden])
Date: 2008-09-20 01:31:58
On Fri, Sep 19, 2008 at 04:20:25PM +1000, David Philp wrote:
>
> strip has no -g option on OS X. Unfortunately I don't understand what
>
It seems that -S is the correct option to use on OS X:
-S Remove the debugging symbol table entries (those created by the -g
option to cc(1) and other compilers).
-x Remove all local symbols (saving only global symbols).
Try running first strip -S, and then strip -S -x, and see whether it has
any effect on the working of your program. (Strip -S -x will remove more
than just -S).