[01:44] hello [01:45] hyperair: hi! [01:45] hi [01:45] nice nickname. [01:47] haha [01:50] hyperair: hey just want to ask, when you build a source, how do you compile the binary statically? [01:51] gcc -static foo.c [01:51] or g++ -static foo.cc [01:51] depending on whether you're doing C or C++ [01:51] just pass -static switch during make? as simple as that? [01:51] yep [01:52] are you using a build system of some sort? [01:52] or just raw make? [01:52] yep build system [01:53] autotools? [01:53] yeah [01:53] is this your project or just some project you're compiling? [01:53] i think some projects allow you to use ./configure --enable-static [01:54] http://sourceware.org/autobook/autobook/autobook_85.html [01:55] if it's your project and you want to force static builds, then you should add -all-static to target_LDFLAGS [01:55] http://www.sourceware.org/autobook/autobook/autobook_89.html