compiler: remove -runtime flag

It is not necessary anymore.
This commit is contained in:
Ayke van Laethem
2018-09-14 20:56:48 +02:00
parent c763e9f1a6
commit 09cbd223c3
2 changed files with 3 additions and 20 deletions
-4
View File
@@ -3042,10 +3042,6 @@ func (c *Compiler) Verify() error {
return llvm.VerifyModule(c.mod, 0)
}
func (c *Compiler) LinkModule(mod llvm.Module) error {
return llvm.LinkModules(c.mod, mod)
}
func (c *Compiler) ApplyFunctionSections() {
// Put every function in a separate section. This makes it possible for the
// linker to remove dead code (-ffunction-sections).