I work on a large project where many functions are not used. I would like to be able to tag some of them as required, and have ld issue an error if it’s not used in the project it’s linking.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

@Raghuram

That option is to make sure unused code isn't stripped off. There is no option to force usage of a function.

For a static function (not exposed), so called dead-code, the function may be optimized out during linkage - which your option will prevent. For exposed functions, these normally aren't stripped since it could at a later point be referenced.

@victor

There is no option to force this, you need to define your own guard within other functions to make sure your 'needed' function are called upon first.

link|improve this answer
that’s sad, but ok :( – qdii Jan 6 at 13:30
feedback

There is an option(-ffunction-sections) in gcc to do this Check this link for more info.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.