From: "Michael N. Filippov" Newsgroups: comp.os.msdos.djgpp Subject: Re: REANNOUCE: DJGPP port of STLport 4.0 Date: 8 Feb 2001 14:08:46 GMT Lines: 26 Message-ID: <95u99e$13m9$1@news.itfs.nsk.su> References: <200102062049 DOT PAA16815 AT delorie DOT com> NNTP-Posting-Host: idisys.iae.nsk.su X-Trace: news.itfs.nsk.su 981641326 36553 193.124.169.11 (8 Feb 2001 14:08:46 GMT) X-Complaints-To: usenet AT news DOT itfs DOT nsk DOT su NNTP-Posting-Date: 8 Feb 2001 14:08:46 GMT User-Agent: tin/pre-1.4-19990517 ("Psychonaut") (UNIX) (Linux/2.4.0-test1 (i586)) To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com I'm very surprised looking at this library size (no __STL_DEBUG or so - only release compilation). Example: my$ cat main.cpp #include int main(void) { std::cout << "Hello, world !" << std::endl; return 0; } my$ gcc main.cpp -s -o main_std.exe -lstdcxx my$ gcc main.cpp -s -o main_stlp.exe -I../../stlport -L../../lib -lstlp -lm my$ ls -la -rw-r--r-- 1 dosuser root 107 Feb 8 19:48 main.cpp -rwxr-xr-x 1 dosuser root 150528 Feb 8 19:50 main_std.exe -rwxr-xr-x 1 dosuser root 757248 Feb 8 19:51 main_stlp.exe Does this library offer a lot of new functionality comparing to the Hewlett-Packard version (standard in DJGPP distribution). I see that only locale (monerary, facets) and sstream functions are new. I would be very appreciated if somebody would explain why it is so big ? Sincerely, Michael