import RT-Thread@9217865c without bsp, libcpu and components/net
This commit is contained in:
commit
e2376a3709
1414 changed files with 390370 additions and 0 deletions
46
tools/xmake.lua
Normal file
46
tools/xmake.lua
Normal file
|
@ -0,0 +1,46 @@
|
|||
add_rules("mode.debug", "mode.release")
|
||||
|
||||
toolchain("${toolchain}")
|
||||
set_kind("standalone")
|
||||
set_sdkdir("${sdkdir}")
|
||||
toolchain_end()
|
||||
|
||||
target("${target}")
|
||||
set_kind("binary")
|
||||
set_toolchains("${toolchain}")
|
||||
|
||||
add_files(
|
||||
${src_path}
|
||||
)
|
||||
|
||||
add_includedirs(
|
||||
${inc_path}
|
||||
)
|
||||
|
||||
add_defines(
|
||||
${define}
|
||||
)
|
||||
|
||||
add_cflags(
|
||||
"${cflags}" ,{force = true}
|
||||
)
|
||||
add_cxxflags(
|
||||
"${cxxflags}" ,{force = true}
|
||||
)
|
||||
|
||||
add_asflags(
|
||||
"${asflags}" ,{force = true}
|
||||
)
|
||||
|
||||
add_ldflags(
|
||||
"${ldflags}" ,{force = true}
|
||||
)
|
||||
|
||||
set_targetdir("./")
|
||||
set_filename("rtthread.elf")
|
||||
|
||||
after_build(function(target)
|
||||
os.exec("${bindir}/${toolchain}-objcopy -O ihex rtthread.elf rtthread.hex")
|
||||
os.exec("${bindir}/${toolchain}-objcopy -O binary rtthread.elf rtthread.bin")
|
||||
os.exec("${bindir}/${toolchain}-size rtthread.elf")
|
||||
end)
|
Loading…
Add table
Add a link
Reference in a new issue