link lines, which affects external libraries pulled up from deep within the dependency tree. Fixed by preserving order everywhere.
12 lines
155 B
C
12 lines
155 B
C
// depends on NoDepF
|
|
void NoDepF_func();
|
|
|
|
void NoDepE_func()
|
|
{
|
|
static int firstcall = 1;
|
|
if( firstcall ) {
|
|
firstcall = 0;
|
|
NoDepF_func();
|
|
}
|
|
}
|