We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v2.8.1+20230711
Archlinux
我正在使用xmake的c++ module功能时,发现转换后的cmakelists包含一句没有输入文件的clang编译命令
COMMAND /usr/local/bin/clang -Qunused-arguments -m64 -fPIC -g -Wall -Werror -O0 -std=c++23 -I${CMAKE_SOURCE_DIR}/src/include -DBUILD_language_DLL
这导致clang报错
clang: error: no input file
正常生成可编译的cmakelists
target("Trc") set_kind("binary") add_files("src/.cpp", "src/.cppm", "language/**.cppm") add_subdirs("language") add_deps("language")
无
The text was updated successfully, but these errors were encountered:
Bot detected the issue body's language is not English, translate it automatically.
Title: There is a conversion error when xmake converts to cmakelists
Sorry, something went wrong.
see #3642
好的,我明白了,看来还是要等cmake官方支持c++ module了,xmake才好做
Ok, I understand, it seems that we still have to wait for cmake to officially support the c++ module, so that xmake can do it
No branches or pull requests
Xmake 版本
v2.8.1+20230711
操作系统版本和架构
Archlinux
描述问题
我正在使用xmake的c++ module功能时,发现转换后的cmakelists包含一句没有输入文件的clang编译命令
这导致clang报错
期待的结果
正常生成可编译的cmakelists
工程配置
target("Trc")
set_kind("binary")
add_files("src/.cpp", "src/.cppm", "language/**.cppm")
add_subdirs("language")
add_deps("language")
附加信息和错误日志
无
The text was updated successfully, but these errors were encountered: