Is is possible to create an object file (.o) from a header file? (.h / .hpp). All the code is inlined in the header …
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, just tell the compiler to compile it as a C++ file and write the result to a
.oor.objfile. But if all the functions are inline, there’s nothing for the code to do, so the resulting object file won’t have any code in it. So there’s usually no point in doing this.