oridb / mc

Myrddin Compiler
MIT License
388 stars 34 forks source link

Allow MYR_LDFLAGS to work properly #153

Closed typeless closed 6 years ago

typeless commented 6 years ago

In the middle of trying out --gc-sections, the problem that the -o was not followed immediately by the output filename stood in my way. This is a straightforward fix.

oridb commented 6 years ago

Generally looks good, missing one small thing: mbld/config+plan9-x64.myr has 6l -lo. With this change, that needs to become 6l -l.

typeless commented 6 years ago

Done.

oridb commented 6 years ago

Thanks!