link lines, which affects external libraries pulled up from deep within the dependency tree. Fixed by preserving order everywhere.
9 lines
84 B
C
9 lines
84 B
C
// Directly depends on One
|
|
void OneFunc();
|
|
|
|
int main()
|
|
{
|
|
OneFunc();
|
|
return 0;
|
|
}
|