creating execuable file in Linux by linking some static libraries (to link ibxyz.a, using -lxyz option). if I strip all symbols in static library (strip -s libxyz.a), then if try to link again, then I gets lot of "undefined reference", can't I do strip on static library using below command?
strip -s xyz.a
strip -s xyz.a
Comment