parent
1a2b69d5c3
commit
040083cdb6
7 changed files with 40 additions and 0 deletions
@ -0,0 +1,9 @@ |
|||||||
|
#include"bob.h" |
||||||
|
|
||||||
|
int hiddenFunction() { |
||||||
|
return 42; |
||||||
|
} |
||||||
|
|
||||||
|
int bobMcBob() { |
||||||
|
return hiddenFunction(); |
||||||
|
} |
@ -0,0 +1,6 @@ |
|||||||
|
#ifndef BOB_H_ |
||||||
|
#define BOB_H_ |
||||||
|
|
||||||
|
int bobMcBob(); |
||||||
|
|
||||||
|
#endif |
@ -0,0 +1,6 @@ |
|||||||
|
V1_0_0 { |
||||||
|
global: |
||||||
|
"bobMcBob"; |
||||||
|
local: |
||||||
|
*; |
||||||
|
}; |
@ -0,0 +1,7 @@ |
|||||||
|
project('linker script', 'c') |
||||||
|
|
||||||
|
vflag = '-Wl,--version-script,@0@/bob.map'.format('/home/jpakkane/workspace/meson/test cases/linuxlike/3 linker script') |
||||||
|
|
||||||
|
l = shared_library('bob', 'bob.c', link_flags : vflag) |
||||||
|
e = executable('prog', 'prog.c', link_with : l) |
||||||
|
test('core', e) |
@ -0,0 +1,5 @@ |
|||||||
|
#include"bob.h" |
||||||
|
|
||||||
|
int main(int argc, char **argv) { |
||||||
|
return bobMcBob() != 42; |
||||||
|
} |
Loading…
Reference in new issue