In order to reliably link to static libraries or individual object files, we need to take their languages into account as well. For static libraries this is easy: we just add the static library's list of compilers to the build target. For extracted objects, we need to only add the ones for the objects we use. But we did this really inefficiently -- in fact, downright terribly. We iterated over all source files from the extracted objects, then tried to look up a new compiler for them. Even though the extracted objects already had a list of compilers! This broke once compilers were made per-subproject, because while the extracted objects have a reference to all the compilers it needs (just like static archives do, actually) we might not actually be able to look up that compiler from scratch inside the current subproject. Fix this by asking the extracted objects to categorize all its own sources and return the compilers we want. Fixes #10579pull/10668/head
parent
ca40dda146
commit
00f8ced048
7 changed files with 49 additions and 4 deletions
@ -0,0 +1,11 @@ |
||||
#if defined _WIN32 || defined __CYGWIN__ |
||||
#define DLL_IMPORT __declspec(dllimport) |
||||
#else |
||||
#define DLL_IMPORT |
||||
#endif |
||||
|
||||
int DLL_IMPORT cppfunc(void); |
||||
|
||||
int otherfunc(void) { |
||||
return cppfunc() != 42; |
||||
} |
@ -0,0 +1,5 @@ |
||||
project('link to extracted objects', 'c') |
||||
|
||||
sublib = subproject('myobjects').get_variable('sublib') |
||||
|
||||
mainlib = static_library('foo', 'foo.c', install: true, link_with: sublib) |
@ -0,0 +1,6 @@ |
||||
#define BUILDING_DLL |
||||
#include "cpplib.h" |
||||
|
||||
extern "C" int DLL_PUBLIC cppfunc(void) { |
||||
return 42; |
||||
} |
@ -0,0 +1,12 @@ |
||||
/* See http://gcc.gnu.org/wiki/Visibility#How_to_use_the_new_C.2B-.2B-_visibility_support */ |
||||
#if defined(_WIN32) || defined(__CYGWIN__) |
||||
#ifdef BUILDING_DLL |
||||
#define DLL_PUBLIC __declspec(dllexport) |
||||
#else |
||||
#define DLL_PUBLIC __declspec(dllimport) |
||||
#endif |
||||
#else |
||||
#define DLL_PUBLIC __attribute__ ((visibility ("default"))) |
||||
#endif |
||||
|
||||
extern "C" int DLL_PUBLIC cppfunc(void); |
@ -0,0 +1,3 @@ |
||||
project('myobjects', 'cpp') |
||||
|
||||
sublib = static_library('sublib', 'cpplib.cpp') |
@ -0,0 +1,5 @@ |
||||
{ |
||||
"installed": [ |
||||
{ "type": "file", "file": "usr/lib/libfoo.a" } |
||||
] |
||||
} |
Loading…
Reference in new issue