diff options
| -rw-r--r-- | tests/apis/custom_toolchain/toolchains/my-c6000/xmake.lua | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/tests/apis/custom_toolchain/toolchains/my-c6000/xmake.lua b/tests/apis/custom_toolchain/toolchains/my-c6000/xmake.lua index 8298b33c9..2de2275a7 100644 --- a/tests/apis/custom_toolchain/toolchains/my-c6000/xmake.lua +++ b/tests/apis/custom_toolchain/toolchains/my-c6000/xmake.lua @@ -16,12 +16,5 @@ toolchain("my-c6000") end) on_load(function (toolchain) - local march = "-mv64+" - if march then - toolchain:add("cxflags", march) - toolchain:add("mxflags", march) - toolchain:add("asflags", march) - toolchain:add("ldflags", march) - toolchain:add("shflags", march) - end + toolchain:add("cxflags", "-Dxxx") end) |
