-
-
Notifications
You must be signed in to change notification settings - Fork 782
Xmake v2.6.5 released, Support remote compilation
Xmake is a lightweight cross-platform build utility based on Lua.
It is very lightweight and has no dependencies because it has a built-in Lua runtime.
It uses xmake.lua to maintain project builds and its configuration syntax is very simple and readable.
We can use it to build project directly like Make/Ninja, or generate project files like CMake/Meson, and it also has a built-in package management system to help users solve the integrated use of C/C++ dependent libraries.
Xmake = Build backend + Project Generator + Package Manager
The new version provides remote compilation support, which allows us to compile code on a remote server, run and debug remotely.
The server can be deployed on Linux/MacOS/Windows to enable cross-platform compilation, e.g. compile and run Windows programs on Linux and macOS/Linux programs on Windows.
It is more stable and smoother to use than ssh remote login compilation, no lagging of ssh terminal input due to network instability, and allows for quick local editing of code files.
We can even seamlessly implement remote compilation in editors and IDEs such as vs/sublime/vscode/idea without relying on the IDE's own support for remote compilation.
$ xmake service
<remote_build_server>: listening 0.0.0.0:9690 ...
We can also turn on the service while displaying back detailed log messages.
$ xmake service -vD
<remote_build_server>: listening 0.0.0.0:9690 ...
$ xmake service --start
$ xmake service --restart
$ xmake service --stop
We start by running the xmake service
command, which automatically generates a default service.conf
configuration file, stored in ~/.xmake/service.conf
.
Then, we edit it to fix the server's listening port (optional).
{
logfile = "/Users/ruki/.xmake/service/logs.txt",
remote_build = {
server = {
listen = "0.0.0.0:9690"
}
}
}
We still edit this file ~/.xmake/service.conf
to configure the address of the server to which the client needs to connect.
{
logfile = "/Users/ruki/.xmake/service/logs.txt",
remote_build = {
client = {
connect = "192.168.56.101:9690",
}
}
}
We can also import the given configuration file by using the following command.
$ xmake service --config=/tmp/service.conf
Next, we just need to go into the root directory of the project we need to compile remotely and execute the xmake service --connect
command to make the connection.
$ xmake create test
$ cd test
$ xmake service --connect
<remote_build_client>: connect 192.168.56.110:9690 ...
<remote_build_client>: connected!
<remote_build_client>: sync files in 192.168.56.110:9690 ...
Scanning files ...
Comparing 3 files ...
[+]: src/main.cpp
[+]: .gitignore
[+]: xmake.lua
3 files has been changed!
Archiving files .
Uploading files with 1372 bytes ...
<remote_build_client>: sync files ok!
Once the connection is successful, we can build remotely as if we were building locally as normal.
$ xmake
<remote_build_client>: run xmake in 192.168.56.110:9690 ...
checking for platform ... macosx
checking for architecture ... ... x86_64
... checking for Xcode directory ... /Applications/Xcode.app
checking for Codesign Identity of Xcode ... Apple Development: [email protected] (T3NA4MRVPU)
... checking for SDK version of Xcode for macosx (x86_64) ... 11.3
... checking for Minimal target version of Xcode for macosx (x86_64) ... 11.4
[ 25%]: ccache compiling.release src/main.cpp
[ 50%]: linking.release test
[ 100%]: build ok!
<remote_build_client>: run command ok!
```''
#### Running the target program remotely
We can also run a debug-compiled target program remotely, just as we can run a debug locally.
```console
$ xmake run
<remote_build_client>: run xmake run in 192.168.56.110:9690 ...
hello world!
<remote_build_client>: run command ok!
$ xmake -rv
<remote_build_client>: run xmake -rv in 192.168.56.110:9690 ...
[ 25% ]: ccache compiling.release src/main.cpp
/usr/local/bin/ccache /usr/bin/xcrun -sdk macosx clang -c -Qunused-arguments -arch x86_64 -mmacosx-version-min=11.4 -isysroot /Applications/ Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.3.sdk -fvisibility=hidden -fvisibility-inlines-hidden -O3 -DNDEBUG -o build/.objs/test/macosx/x86_64/release/src/main.cpp.o src/main.cpp
[ 50%]: linking.release test
"/usr/bin/xcrun -sdk macosx clang++" -o build/macosx/x86_64/release/test build/.objs/test/macosx/x86_64/release/src/main.cpp.o -arch x86_ 64 -mmacosx-version-min=11.4 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.3 .sdk -stdlib=libc++ -Wl,-x -lz
[100%]: build ok!
<remote_build_client>: run command ok!
```''
#### Remote configuration of build parameters
```console
$ xmake f --xxx --yy
When you connect, the code is automatically synchronised once, and you can execute this command to manually synchronise the changed files if the code changes later.
$ xmake service --sync
<remote_build_client>: sync files in 192.168.56.110:9690 ...
Scanning files ...
Comparing 3 files ...
[+]: src/main.cpp
[+]: .gitignore
[+]: xmake.lua
3 files has been changed!
Archiving files .
Uploading files with 1372 bytes ...
<remote_build_client>: sync files ok!
This only affects the current project, other projects can still connect and build at the same time.
$ xmake service --disconnect
<remote_build_client>: disconnect 192.168.56.110:9690 ...
<remote_build_client>: disconnected!
$ xmake service --logs
We can also manually clean up any cache and build generated files for the remote.
$ cd projectdir
$ xmake service --clean
In previous versions we have been able to integrate each cargo package individually via ``add_requires("cargo::base64")` for compiling rust projects, and for mixed compilation with C/C++, e.g.
add_rules("mode.release", "mode.debug")
add_requires("cargo::base64 0.13.0")
add_requires("cargo::flate2 1.0.17", {configs = {features = "zlib"}})
target("test")
set_kind("binary")
add_files("src/main.rs")
add_packages("cargo::base64", "cargo::flate2")
But there is a problem with the above approach.
If there are many dependencies and several dependencies all share a dependency on the same child dependency, then there will be a redefinition problem, so if we use the full Cargo.toml to manage the dependencies we won't have this problem.
For example
add_rules("mode.release", "mode.debug")
add_requires("cargo::test", {configs = {cargo_toml = path.join(os.projectdir(), "Cargo.toml")}})
target("test")
set_kind("binary")
add_files("src/main.rs")
add_packages("cargo::test")
We can then integrate all the required dependencies in Cargo.toml, leaving Rust to analyse the dependencies itself and avoid duplicate child dependency conflicts.
For a full example see: cargo_deps_with_toml
Of course, if the user has a single dependency, then the previous integration approach is still perfectly usable.
At this point, one might ask why we need to configure xmake.lua when we are already using Cargo.toml and Cargo, and why not just compile Cargo?
If we are developing a C/C++ project in Xmake, but need to introduce some Rust submodules for use in the C/C++ project, this is a quick and easy way to call Rust libraries and code in C/C++.
For more instructions on calling Rust code libraries in C/C++, see: [Calling Rust in C/C++ using cxxbridge](https://xmake.io/#/zh-cn/guide/project_examples?id=%e4%bd%bf%e7%94%a8- cxxbridge-%e5%9c%a8-c-%e4%b8%ad%e8%b0%83%e7%94%a8-rust)
In this new version, we provide a new interface add_filegroups
for grouping source files for presentation of project files generated by the vs/vsxmake/cmakelists generator.
If you don't set up grouping, Xmake will also display them in a tree-like pattern by default, but there are some extreme cases where the directory hierarchy doesn't display very well, e.g.
target("test")
set_kind("binary")
add_files("... /... /... /... /src/**.cpp")
Two main presentation modes are currently supported.
- plain: flat mode
- tree: tree display, this is also the default mode
It also supports the grouping of files added by add_headerfiles
.
target("test")
set_kind("binary")
add_files(". /... /... /... /src/**.cpp")
add_filegroups("group1/group2", {rootdir = "... /... /... /... /"})
target("test")
set_kind("binary")
add_files("... /... /... /... /src/**.cpp")
add_filegroups("group1/group2", {rootdir = "... /... /... /... /", files = {"src/**.cpp"}})
In this mode, all source files ignore the nested directory hierarchy and are displayed at the same level under the grouping.
target("test")
set_kind("binary")
add_files(". /... /... /... /src/**.cpp")
add_filegroups("group1/group2", {rootdir = "... /... /... /... /", mode = "plain"})
Xmake's package dependency management interface add_requires
supports versioning semantics, branch selection, e.g.
add_requires("tbox 1.6.1")
add_requires("tbox >= 1.6.1")
add_requires("tbox master")
However, in previous versions, we didn't support selecting versions from Git Commit, and now we do.
add_requires("tbox e807230557aac69e4d583c75626e3a7ebdb922f8")
As long as, this package is configured with a Git url, you can select the version from Commit.
If you want to compile a target application for the iOS platform, you can previously use the following configuration to compile the real and emulator versions of the application separately, simply by switching arch.
$ xmake f -p iphoneos [-a armv7|armv7s|arm64|i386|x86_64]
$ xmake
However, since the emulator on M1 devices also supports the arm64 architecture, it was no longer possible to distinguish an emulator from an arch. Therefore, in this new version, we have added a new parameter to distinguish between emulator and emulator targets.
$ xmake f -p iphoneos --appledev=simulator
$ xmake f -p watchos --appledev=simulator
$ xmake f -p appletvos --appledev=simulator
And if you don't specify the --appledev=
argument, the default is to compile the real program, but of course the previous modes are fully compatible.
- #2138: Support template package
-
#2185: Add
--appledev=simulator
to improve apple simulator support - #2227: Improve cargo package with Cargo.toml file
- Improve
add_requires
to support git commit as version - #622: Support remote compilation
-
#2282: Add
add_filegroups
to support file group for vs/vsxmake/cmake generator
- #2137: Improve path module
- Reduce 50% xmake binary size on macOS
- Improve tools/autoconf,cmake to support toolchain switching.
- #2221: Improve registry api to support unicode
- #2225: Support to parse import dependencies for protobuf
- #2265: Sort CMakeLists.txt
- Speed up
os.files
- #2233: Fix c++ modules deps