How would I use "strip" in code blocks.

I was trying to make boost's serialization use less bytes, and I stumbled upon this, which removes the big debugging symbols:
strip --strip-debug

or
strip -w -K '!*serialization*'


This seems like a working command on msys, but I have no idea how to implement this into code blocks.
Why don't you just compile in release mode so that debugging symbols are not present in the first place?
Topic archived. No new replies allowed.