summaryrefslogtreecommitdiff
path: root/xmake/tools/go.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2017-02-06 21:56:55 +0800
committerruki <[email protected]>2017-02-06 21:56:55 +0800
commite9aa23db2437faf17ca097e891ec5a1e628865f3 (patch)
tree9c6aa8f108f84ba07e5016796a28b7b8401e0ad8 /xmake/tools/go.lua
parent2c125229b2da9e9d854275ae08cd29ecf57a447d (diff)
modify linker script
Diffstat (limited to 'xmake/tools/go.lua')
-rwxr-xr-xxmake/tools/go.lua24
1 files changed, 12 insertions, 12 deletions
diff --git a/xmake/tools/go.lua b/xmake/tools/go.lua
index 67450cf53..cb14e931b 100755
--- a/xmake/tools/go.lua
+++ b/xmake/tools/go.lua
@@ -47,57 +47,57 @@ function get(name)
end
-- make the strip flag
-function strip(level)
+function nf_strip(level)
return ""
end
-- make the symbol flag
-function symbol(level)
+function nf_symbol(level)
return ""
end
-- make the warning flag
-function warning(level)
+function nf_warning(level)
return ""
end
-- make the optimize flag
-function optimize(level)
+function nf_optimize(level)
return ""
end
-- make the vector extension flag
-function vectorext(extension)
+function nf_vectorext(extension)
return ""
end
-- make the language flag
-function language(stdname)
+function nf_language(stdname)
return ""
end
-- make the define flag
-function define(macro)
+function nf_define(macro)
return ""
end
-- make the undefine flag
-function undefine(macro)
+function nf_undefine(macro)
return ""
end
-- make the includedir flag
-function includedir(dir)
+function nf_includedir(dir)
return ""
end
--- make the linklib flag
-function linklib(lib)
+-- make the link flag
+function nf_link(lib)
return ""
end
-- make the linkdir flag
-function linkdir(dir)
+function nf_linkdir(dir)
return ""
end