Libraries that have been linked with link_whole: are internal implementation details and should never be exposed to the outside world in either Libs: or Libs.private: Closes https://github.com/mesonbuild/meson/issues/3509pull/3514/head
parent
2b5766980b
commit
badbfa125c
6 changed files with 26 additions and 13 deletions
@ -1,5 +1,7 @@ |
||||
#include<stdio.h> |
||||
|
||||
int get_returnvalue (void); |
||||
|
||||
int some_func() { |
||||
return 0; |
||||
return get_returnvalue(); |
||||
} |
||||
|
@ -0,0 +1,3 @@ |
||||
int get_returnvalue (void) { |
||||
return 0; |
||||
} |
Loading…
Reference in new issue