link lines, which affects external libraries pulled up from deep within the dependency tree. Fixed by preserving order everywhere.
8 lines
82 B
C
8 lines
82 B
C
// depends on NoDepY
|
|
void NoDepY_func();
|
|
|
|
void NoDepX_func()
|
|
{
|
|
NoDepY_func();
|
|
}
|