How do I build executables using GCC so that it is not possible to search for a keyword. For example, I wrote my code using a function called "PascalTriangle" and built an executable and distributed. if I grep "PascalTriangle" on the executable then I am able to atleast know that the binary was built using that function. How do I hide this information?
Apologies, if my question is not relevant. Thank you.