2020-10-17 ruki
xmake is a lightweight cross-platform build tool based on Lua. It uses xmake.lua to maintain project builds. Compared with makefile/CMakeLists.txt, the configuration syntax is more Concise and intuitive, very friendly to novices, can get started quickly in a short time, allowing users to focus more on the actual projec 继续阅读 »
2020-10-17 ruki
xmake 是一个基于 Lua 的轻量级跨平台构建工具,使用 xmake.lua 维护项目构建,相比 makefile/CMakeLists.txt,配置语法更加简洁直观,对新手非常友好,短时间内就能快速入门,能够让用户把更多的精力集中在实际的项目开发上。 在这个新版本中,我们对 Intel 系列的 C++ 和 Fortran 编译器做了全平台支持,并且改进了上个版本新加的 Wasm 工具链支持,同时对 Qt SDK for Wasm 也进行了支持。 另外,我们还将 luajit 升级到最新的 v2.1 版本,在跨平台方面,xmake 也做了很大的完善,增加了 mips64 架构的运行支持。 项目源码 官方文档 入门课程 入门 继续阅读 »
2016-07-22 ruki
xmake provides a convenient and flexible cross-compiling support, in most cases, we need not to configure complex toolchains prefix, for example: arm-linux- As long as this toolchains meet the following directory structure: /home/toolchains_sdkdir - bin - arm-linux-gcc - arm-linux-ld - ... 继续阅读 »
2020-11-24 ruki
xmake is a lightweight cross-platform build tool based on Lua. It uses xmake.lua to maintain project builds. Compared with makefile/CMakeLists.txt, the configuration syntax is more Concise and intuitive, very friendly to novices, can get started quickly in a short time, allowing users to focus more on the actual projec 继续阅读 »
2016-07-22 ruki
xmake 提供了方便灵活的交叉编译支持,大部分情况下,都不需要配置很复杂的toolchains前缀,例如:arm-linux- 什么的 只要这个toolchains目录满足如下结构(大部分的交叉工具链都是这个结构): /home/toolchains_sdkdir - bin - arm-linux-gcc - arm-linux-ld - ... - lib - libxxx.a - include - xxx.h 那么,使用xmake进行交叉编译的时候,只需要进行如下配置和编译: bash $ xmake f -p linux 继续阅读 »
2020-11-24 ruki
xmake 是一个基于 Lua 的轻量级跨平台构建工具,使用 xmake.lua 维护项目构建,相比 makefile/CMakeLists.txt,配置语法更加简洁直观,对新手非常友好,短时间内就能快速入门,能够让用户把更多的精力集中在实际的项目开发上。 在这个新版本中,我们重点改进了 xmake 的依赖包管理,新增了 Archlinux 和 MSYS2/Mingw 下 的 pacman 包管理器支持,另外我们进一步丰富了 xmake 的官方包仓库 xmake-repo,新增了 50 多个常用的 C/C++ 包。 此外,我们新增了一个基于 xmake 的独立子命令:xrepo,一个完整独立的跨平台 C/C++ 包管理器,便于用 继续阅读 »
2016-10-30 ruki
New features Add some interpreter builtin-modules Support ml64 assembler for windows x64 Changes Improve ipairs and pairs interfaces and support filter Add filters for generating vs201x project Remove core/tools (msys toolchains) and uses xmake to compile core sources on windows Remove xmake/packages for templates Bu 继续阅读 »
2016-07-06 ruki
Website Sources Changelog Changes Change install and uninstall actions Update templates Improve to check function Bugs fixed #7: Fix create project bug with '[targetname]' #9: Support clang with c++11 Fix api scope leaks bug Fix path bug for windows Fix check function bug Fix check toolchains failed Fix compile fa 继续阅读 »