xmake icon indicating copy to clipboard operation
xmake copied to clipboard

🔥 A cross-platform build utility based on Lua

Results 428 xmake issues
Sort by recently updated
recently updated
newest added

https://github.com/xmake-io/xmake/pull/2623

improvement

### Xmake 版本 v2.6.3+202201242206 ### 操作系统版本和架构 macOS Catalina 10.15.7 (19H15) ### 描述问题 根据[文档](https://xmake.io/#/manual/custom_rule?id=pythonlibrary)尝试使用pybind11 ```lua add_rules("mode.release", "mode.debug") add_requires("pybind11") target("example") add_rules("python.library") add_files("src/*.cpp") add_packages("pybind11") set_languages("c++11") ``` 执行 `xmake -vD` ```bash [ 25%]: compiling.release...

bug

### Xmake 版本 2.6.4 ### 操作系统版本和架构 ubuntu20 ### 描述问题 我在xmake添加了add_requires("cmake::PCL",{alias="pcl",system=true}), 但是编译出现updating repositories .. error: fatal: 无法访问 'https://github.com/xmake-mirror/build-artifacts.git/':gnutls_handshake() failed: Error in the pull function. ### 期待的结果 我期待能够搜索pcl库,并添加依赖。 ### 工程配置 _No response_...

bug

### Is your feature request related to a problem? Please describe. 我正在编写可能会在 Windows ARM 平台上运行的 Rust & C++ 程序,输入 `xmake f -h` 命令发现 windows 只有 x86 和 x64 的架构支持,我看到 Rust...

duplicate

### Is your feature request related to a problem? Please describe. One issue I regularly have with xmake package is the fact there's no good way to handle libraries spanning...

feature request

Could you please add `find_matlab()` module similar to `CMake`'s [`FindMatlab.cmake`](https://github.com/Kitware/CMake/blob/master/Modules/FindMatlab.cmake)? It should enable simple linking with MATLAB and creation of `MEX` files. The output should be similar to `CMake`: 1....

feature request
contribution welcome

### Xmake Version v2.6.9+HEAD.22ecc0156 (dev) ### Operating System Version and Architecture Windows 10 version 1909 ### Describe Bug The local repos are messed up after I try to build with...

bug

### 你在什么场景下需要该功能? https://gn.googlesource.com/gn/+/master/docs/reference.md#commands-gn-desc-examples gn 的 desc 功能可以展示一个target的sources/headers/deps/links/syslinks,以及cflags/cxxflags/defines/ldflags来源在哪里(`gn desc --blame`)。这个功能在debug的时候非常方便,希望xmake也能加入这个功能。 ### 描述可能的解决方案 提供一个xmake desc的action,由于xmake不需要显式声明buildir,可以设计语法如下: ``` > xmake desc // print all targets > xmake desc // print target overview > xmake...

feature request

### Xmake 版本 2.6.4 ### 操作系统版本和架构 windows ### 描述问题 大佬,我看教程文档里说`add_files`可以直接添加.a静态库文件,我试了下编译会提示符号未定义`Undefined symbol`错误;需要用`add_links`和`add_linkdirs`添加才行,什么问题?工程是armcc的cortex-m3 ### 期待的结果 - ### 工程配置 _No response_ ### 附加信息和错误日志 _No response_

bug