当前位置: 首页 > news >正文

街道网站建设更新汇报深圳做网站的

街道网站建设更新汇报,深圳做网站的,网站建设大宇,北京正规制作网站公司layout: post.cn title: “Xmake v2.7.7 发布#xff0c;支持 Haiku 平台#xff0c;改进 API 检测和 C Modules 支持” tags: xmake lua C/C package modules haiku cmodules categories: xmake Xmake 是一个基于 Lua 的轻量级跨平台构建工具。 它非常的轻量#xff0c;没… layout: post.cn title: “Xmake v2.7.7 发布支持 Haiku 平台改进 API 检测和 C Modules 支持” tags: xmake lua C/C package modules haiku cmodules categories: xmake Xmake 是一个基于 Lua 的轻量级跨平台构建工具。 它非常的轻量没有任何依赖因为它内置了 Lua 运行时。 它使用 xmake.lua 维护项目构建相比 makefile/CMakeLists.txt配置语法更加简洁直观对新手非常友好短时间内就能快速入门能够让用户把更多的精力集中在实际的项目开发上。 我们能够使用它像 Make/Ninja 那样可以直接编译项目也可以像 CMake/Meson 那样生成工程文件另外它还有内置的包管理系统来帮助用户解决 C/C 依赖库的集成使用问题。 目前Xmake 主要用于 C/C 项目的构建但是同时也支持其他 native 语言的构建可以实现跟 C/C 进行混合编译同时编译速度也是非常的快可以跟 Ninja 持平。 Xmake Build backend Project Generator Package Manager [Remote|Distributed] Build Cache尽管不是很准确但我们还是可以把 Xmake 按下面的方式来理解 Xmake ≈ Make/Ninja CMake/Meson Vcpkg/Conan distcc ccache/sccache项目源码官方文档入门课程 新特性介绍 支持 Haiku 系统 Xmake 现在已经完全可以在 Haiku 系统 上运行并且我们对 Xmake 新增了一个 haiku 编译平台用于在 Haiku 系统上进行代码编译。 效果如下: 改进 C20 Modules 支持 最新构建的 clang-17 对 C20 Modules 做了不少改进因此我们在 Xmake 中也针对性地对其进行了更好的适配并且修复了一些 std modules 相关的问题。 关于 C Modules 的完整工程例子可以看下 C Modules Examples。 现在也有一些实际的 C Modules 项目已经使用了 Xmake 来构建例如 async_simpleStormKit 改进 API 检测 先前的版本对 xmake.lua 的配置 API 的传参有效性检测比较弱仅仅针对 add_includedirs, add_files 等几个少数的 API 做了检测。 而新版中我们新增了一个 xmake check 专门用于检测 API 和代码的插件可以更好地对用户的配置进行检测避免用户由于不熟悉 Xmake 导致各种配置值设置不对的问题。 另外除了手动运行 xmake check 命令来触发检测Xmake 在编译中编译失败等各个阶段 也会及时地自动触发一些常规 API 和配置的检测毕竟不是所有用户都知道 xmake check 这个命令的存在。 默认检测所有 API set_lanuages(c91) -- typo$ xmake check ./xmake.lua:15: warning: unknown language value c91, it may be c90 0 notes, 1 warnings, 0 errors默认也可以指定检测特定组 $ xmake check api $ xmake check api.target显示详细输出 这会额外提供 note 级别的检测信息。 $ xmake check -v ./xmake.lua:15: warning: unknown language value cxx91, it may be cxx98 ./src/tbox/xmake.lua:43: note: unknown package value mbedtls ./src/tbox/xmake.lua:43: note: unknown package value polarssl ./src/tbox/xmake.lua:43: note: unknown package value openssl ./src/tbox/xmake.lua:43: note: unknown package value pcre2 ./src/tbox/xmake.lua:43: note: unknown package value pcre ./src/tbox/xmake.lua:43: note: unknown package value zlib ./src/tbox/xmake.lua:43: note: unknown package value mysql ./src/tbox/xmake.lua:43: note: unknown package value sqlite3 8 notes, 1 warnings, 0 errors检测指定的 API $ xmake check api.target.languages ./xmake.lua:15: warning: unknown language value cxx91, it may be cxx98 0 notes, 1 warnings, 0 errors检测编译 flags $ xmake check ./xmake.lua:10: warning: clang: unknown c compiler flag -Ox 0 notes, 1 warnings, 0 errors检测 includedirs 除了 includedirs还有 linkdirs 等路径都会去检测。 $ xmake check ./xmake.lua:11: warning: includedir xxx not found 0 notes, 1 warnings, 0 errors支持检测工程代码clang-tidy 显示 clang-tidy 检测列表 $ xmake check clang.tidy --list Enabled checks:clang-analyzer-apiModeling.StdCLibraryFunctionsclang-analyzer-apiModeling.TrustNonnullclang-analyzer-apiModeling.google.GTestclang-analyzer-apiModeling.llvm.CastValueclang-analyzer-apiModeling.llvm.ReturnValue...检测所有 targets 中的源码 $ xmake check clang.tidy 1 error generated. Error while processing /private/tmp/test2/src/main.cpp. /tmp/test2/src/main.cpp:1:10: error: iostr file not found [clang-diagnostic-error] #include iostr^~~~~~~ Found compiler error(s). error: execv(/usr/local/opt/llvm/bin/clang-tidy -p compile_commands.json /private/tmp/test2/src /main.cpp) failed(1)指定检测类型 我们可以在 --check 中指定需要检测的类型具体用法可以参考 clang-tidy 的 --check 参数完全一致的。 $ xmake check clang.tidy --checks* 6 warnings and 1 error generated. Error while processing /private/tmp/test2/src/main.cpp. /tmp/test2/src/main.cpp:1:10: error: iostr file not found [clang-diagnostic-error] #include iostr^~~~~~~ /tmp/test2/src/main.cpp:3:1: warning: do not use namespace using-directives; use using-declarat ions instead [google-build-using-namespace] using namespace std; ^ /tmp/test2/src/main.cpp:3:17: warning: declaration must be declared within the __llvm_libc na mespace [llvmlibc-implementation-in-namespace] using namespace std;^ /tmp/test2/src/main.cpp:5:5: warning: declaration must be declared within the __llvm_libc nam espace [llvmlibc-implementation-in-namespace] int main(int argc, char **argv) {^ /tmp/test2/src/main.cpp:5:5: warning: use a trailing return type for this function [modernize-u se-trailing-return-type] int main(int argc, char **argv) { ~~~ ^ auto - int /tmp/test2/src/main.cpp:5:14: warning: parameter argc is unused [misc-unused-parameters] int main(int argc, char **argv) {^~~~/*argc*/ /tmp/test2/src/main.cpp:5:27: warning: parameter argv is unused [misc-unused-parameters] int main(int argc, char **argv) {^~~~/*argv*/ Found compiler error(s). error: execv(/usr/local/opt/llvm/bin/clang-tidy --checks* -p compile_commands.json /private/tm p/test2/src/main.cpp) failed(1)检测指定 target 的代码 $ xmake check clang.tidy [targetname]检测给定的源文件列表 $ xmake check clang.tidy -f src/main.c $ xmake check clang.tidy -f src/*.c:src/**.cpp设置 .clang-tidy 配置文件 $ xmake check clang.tidy --configfile/tmp/.clang-tidy创建 .clang-tidy 配置文件 $ xmake check clang.tidy --checks* --create $ cat .clang-tidy --- Checks: clang-diagnostic-*,clang-analyzer-*,* WarningsAsErrors: HeaderFilterRegex: AnalyzeTemporaryDtors: false FormatStyle: none User: ruki CheckOptions:- key: readability-suspicious-call-argument.PrefixSimilarAbovevalue: 30- key: cppcoreguidelines-no-malloc.Reallocationsvalue: ::realloc 改进 target 配置来源分析 我们改进了 xmake show -t target 命令对 target 信息的展示新增了配置来源分析并且精简了一些相对冗余的信息。 我们可以用它更好地排查定位自己配置的一些 flags 实际来自那一行配置。 显示效果如下 $ xmake show -t tbox The information of target(tbox):at: /Users/ruki/projects/personal/tbox/src/tbox/xmake.luakind: statictargetfile: build/macosx/x86_64/release/libtbox.arules:- mode.release - ./xmake.lua:26- mode.debug - ./xmake.lua:26- utils.install.cmake_importfiles - ./src/tbox/xmake.lua:15- utils.install.pkgconfig_importfiles - ./src/tbox/xmake.lua:16options:- object - ./src/tbox/xmake.lua:53- charset - ./src/tbox/xmake.lua:53- database - ./src/tbox/xmake.lua:53packages:- mysql - ./src/tbox/xmake.lua:43- sqlite3 - ./src/tbox/xmake.lua:43links:- pthread - option(__keyword_thread_local) - programdir/includes/check_csnippets.lua:100syslinks:- pthread - ./xmake.lua:71- dl - ./xmake.lua:71- m - ./xmake.lua:71- c - ./xmake.lua:71defines:- __tb_small__ - ./xmake.lua:42- __tb_prefix__tbox - ./src/tbox/xmake.lua:19- _GNU_SOURCE1 - option(__systemv_semget) - programdir/includes/check_cfuncs.lua:104cxflags:- -Wno-errordeprecated-declarations - ./xmake.lua:22- -fno-strict-aliasing - ./xmake.lua:22- -Wno-errorexpansion-to-defined - ./xmake.lua:22- -fno-stack-protector - ./xmake.lua:51frameworks:- CoreFoundation - ./src/tbox/xmake.lua:38- CoreServices - ./src/tbox/xmake.lua:38mxflags:- -Wno-errordeprecated-declarations - ./xmake.lua:23- -fno-strict-aliasing - ./xmake.lua:23- -Wno-errorexpansion-to-defined - ./xmake.lua:23includedirs:- src - ./src/tbox/xmake.lua:26- build/macosx/x86_64/release - ./src/tbox/xmake.lua:27headerfiles:- src/(tbox/**.h)|**/impl/**.h - ./src/tbox/xmake.lua:30- src/(tbox/prefix/**/prefix.S) - ./src/tbox/xmake.lua:31- build/macosx/x86_64/release/tbox.config.h - ./src/tbox/xmake.lua:34files:- src/tbox/*.c - ./src/tbox/xmake.lua:56- src/tbox/hash/bkdr.c - ./src/tbox/xmake.lua:57- src/tbox/hash/fnv32.c - ./src/tbox/xmake.lua:57compiler (cc): /usr/bin/xcrun -sdk macosx clang- -Qunused-arguments -target x86_64-apple-macos12.6 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdklinker (ar): /usr/bin/xcrun -sdk macosx ar- -crcompflags (cc):- -Qunused-arguments -target x86_64-apple-macos12.6 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk -Wall -Werror -Oz -stdc99 -Isrc -Ibuild/macosx/x86_64/release -D__tb_small__ -D__tb_prefix__\tbox\ -D_GNU_SOURCE1 -framework CoreFoundation -framework CoreServices -Wno-errordeprecated-declarations -fno-strict-aliasing -Wno-errorexpansion-to-defined -fno-stack-protectorlinkflags (ar):- -cr改进包的下载配置 如果有些包的 url 下载需要设置特定 http headers 去鉴权后才能通过下载可以通过这个策略来指定。 这通常用于一些公司内部的私有仓库包的维护。 package(xxx)set_policy(package.download.http_headers, TEST1: foo, TEST2: bar)我们也可以设置指定的 urls 的 http headers package(zlib)add_urls(https://github.com/madler/zlib/archive/$(version).tar.gz, {http_headers {TEST1: foo, TEST2: bar}})改进 dlang 工具链支持 先前的版本Xmake 仅仅提供了 dlang 这一个工具链内部会自动取查找 dmd, ldc2, gdc 来适配选择能够获取到的 dlang 编译器去编译项目。 但是这种方式对用户而言无法更加灵活地去选择指定的编译器如果同时安装了 dmd, ldc2那么 Xmake 总是会优先使用 dmd 作为 dlang 的编译器。 因此新版本中xmake 额外提供了三个独立的工具链可以单独选择需要的 dlang 编译器。 比如运行下面的命令就可以快速切换到 ldc2 编译器去编译项目。 $ xmake f --toolchainldc $ xmake除了 ldc 工具链还有 dmd, gdc 这两个工具链可以单独选择使用。 并且我们还改进了 dmd/ldc2 的编译优化选项配置使得生产的 dlang 二进制程序更加的小而快。 支持外置构建目录配置 现有的内置构建目录模式 Xmake 目前提供的构建目录模式属于内置构建目录也就是如果我们在当前工程根目录下运行 xmake 命令就会自动生成 build 目录并且 .xmake 用于存放一些配置缓存。 - projectdir (workdir)- build (generated)- .xmake (generated)- src- xmake.lua$ cd projectdir $ xmake当然我们可以通过 xmake f -o ../build 去配置修改构建目录但是 .xmake 目录还是在工程源码目录下。 $ cd projectdir $ xmake f -o ../build这对于一些喜欢完全代码目录保持完整干净的用户而言可能并不喜欢这种方式。 新的外置构建目录模式 因此新版本中Xmake 提供了另外一种构建目录配置方式也就是外置目录构建类似 CMake。 比如我们想使用下面这种目录结构去构建项目总是保持源码目录干净。 - workdir- build (generated)- .xmake (generated) - projectdir- src- xmake.lua我们只需要进入需要存储 build/.xmake 目录的工作目录下然后使用 xmake f -P [projectdir] 配置命令去指定源码根目录即可。 $ cd workdir $ xmake f -P ../projectdir $ xmake配置完成后源码根目录就被完全记住了后面的任何构建命令都不需要再去设置它就跟之前一样使用就行。 比如构建重建运行或者安装等命令跟之前的使用完全一致用户感觉不到任何差异。 $ xmake $ xmake run $ xmake --rebuild $ xmake clean $ xmake install我们同样可以使用 -o/--buildir 参数去单独设置构建目录到其他地方例如设置成下面这个结构。 - build (generated) - workdir- .xmake (generated) - projectdir- src- xmake.lua$ cd workdir $ xmake f -P ../projectdir -o ../build更新内容 新特性 添加 Haiku 支持#3326: 添加 xmake check 去检测工程代码 (clang-tidy) 和 API 参数配置#3332: 在包中配置添加自定义 http headers 改进 #3318: 改进 dlang 工具链#2591: 改进 target 配置来源分析为 dmd/ldc2 改进 strip/optimization#3342: 改进配置构建目录支持外置目录构建保持源码目录更加干净#3373: 为 clang-17 改进 std 模块支持 Bugs 修复 #3317: 针对 Qt 工程修复 lanuages 设置#3321: 修复隔天 configfiles 重新生成导致重编问题#3296: 修复 macOS arm64 上构建失败 https://tboox.org/cn/2023/02/23/xmake-update-v2.7.7/
http://www.w-s-a.com/news/179123/

相关文章:

  • 网站设计常见问题建设工程网上质检备案网站
  • 网站怎样优化文章关键词建设网站需要钱吗
  • 加强网站建设和管理的通知重庆网站推广产品
  • 网站建设术语解释百度发布信息的免费平台
  • 情公司做的网站seo与网站优化 pdf
  • 做一个购物网站多少钱江阴市住房和城乡建设局网站
  • 网站建设都包括哪些ps怎么做网站首页和超链接
  • 怎样低成本做网站推广编辑网站教程
  • 邯郸网站建设信息网站开发报价人天
  • 王店镇建设中心小学网站酷玛网站建设
  • 网站需求方案wordpress博客主题推荐
  • 网站安全证书过期怎么办那个视频网站最好最全网址
  • 外贸上哪个网站开发客户建行个人网上银行登录入口
  • 空间除了可以做网站还能干什么qq钓鱼网站
  • 网站 技术企业网站用免费程序
  • 做网站的中文名字汕尾网站开发
  • 网站推广效果推广网站推荐
  • 腾讯企业网站建设网络推广比较经典和常用的方法有
  • 四川成都网站网页设计上海外贸网站制作公司
  • wordpress模板首页图片锦州网站做优化
  • 哔哩哔哩网站建设分析有哪些做网站好的公司
  • 福建建设执业中心网站沧州网络推广外包公司
  • 做网站怎么改关键词营销网站建设818gx
  • 广撒网网站怎么进行网络营销
  • 中职计算机网站建设教学计划电商网站如何避免客户信息泄露
  • 惠州微网站建设外贸进出口代理公司
  • 网站建设最常见的问题建设银行网站机构
  • 网站集群建设相关的招标南通seo网站建设费用
  • 网络培训的网站建设能够做二维码网站
  • 网站类游戏网站开发wordpress 文章首标点