I compile a simple C++ program: #include <fstream> int main() { std::ofstream out( "file.out" ); } With g++33 on a 5.1-RELEASE system, it creates a very large binary (500k). Is there something obvious I am doing wrong here? Thanks.