
Prior to this commit, linking against an object library did not propagate private link dependencies of object libraries to their consuming targets. This change implements the correct behavior. Fixes: #18692 Co-Author: Brad King <brad.king@kitware.com>
7 lines
70 B
C
7 lines
70 B
C
extern int myobj_foo(void);
|
|
|
|
int main(void)
|
|
{
|
|
return myobj_foo();
|
|
}
|