Fix CCRX linking external dependencies
This commit is contained in:
parent
53289cb98c
commit
0384487fc5
|
@ -148,6 +148,8 @@ class CcrxCompiler:
|
|||
continue
|
||||
elif i.startswith('-L'):
|
||||
continue
|
||||
elif not i.startswith('-lib=') and i.endswith(('.a', '.lib')):
|
||||
i = '-lib=' + i
|
||||
result.append(i)
|
||||
return result
|
||||
|
||||
|
|
Loading…
Reference in New Issue