You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AFAIK there is no option to choose different linker for premake.gcc. This issue is a proposal to introduce premake.gcc.linker or premake.gcc.ld option for users to change linker, for example to lld
The text was updated successfully, but these errors were encountered:
It's already supported via GCC -B command line option:
-Bprefix
This option specifies where to find the executables, libraries, include files, and data files of the compiler itself.
The compiler driver program runs one or more of the subprograms cpp, cc1, as and ld. It tries prefix as a prefix for
each program it tries to run, both with and without `machine/version/'.
@bkaradzic the -B would cover the scenario in which ld is located in non-standard location. However I do not think it is the flag to choose totally different linker, for example lld in the case of using clang
AFAIK there is no option to choose different linker for premake.gcc. This issue is a proposal to introduce
premake.gcc.linker
orpremake.gcc.ld
option for users to change linker, for example tolld
The text was updated successfully, but these errors were encountered: