postgres_cmake
postgres_cmake copied to clipboard
make install-strip
Or, maybe "make install" can just always strip the binary's? Or two steps, "make strip", "make install"?
You can build with strip -s: CFLAGS="-s -O2" cmake .. -DCMAKE_INSTALL_PREFIX="/usr/local"
dont't forget remove CMakeCache.txt before.