$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Mark Rodgers (mark.rodgers_at_[hidden])
Date: 2000-06-28 02:50:15
> Did I install 5.5 incorrectly? There doesn't seem to be any C++
> standard library. Or do people just use STLport?
No, there is a library, but its not in the include path by default.
IMHO, the best thing to do is put a file called BCC32.CFG into your bcc
bin directory (I think that's typically c:\borland\bcc55\bin) with the
correct command line options (one per line is fine). For example, my
bcc32.cfg just looks like this (c:\work\boost is my Boost root directory):
-Ic:\borland\bcc55\include
-Ic:\work\boost
-Lc:\borland\bcc55\lib
-w-8012
-w-8027
Mark