KaivnD

Results 7 issues of KaivnD

### 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

My project mean to use Chinese character as username, but somehow VaRest dosen't work fine.So I came here to get some help, please help me!

question

I usually use global variable call `arguments`, which is an array can be used for passing arguments to the jsx file when I execute a script from command line, but...

As you can see in the title, so much error in type definition file `rhino3dm.d.ts`. Few yeas ago, I found this module, which really got my attention. I like it,...

bug
help wanted
js
docs

Today I was testing `Promise` functionality, `then` is working just fine, but somehow `catch` callback is not running. When I go through the source code, I found this line [/NiL.JS/BaseLibrary/Promise.cs](https://github.com/nilproject/NiL.JS/blob/50b78262a08c6c77bf5a2d4a62f3b3cda2499caf/NiL.JS/BaseLibrary/Promise.cs#L96)...

### 你在什么场景下需要该功能? 前段时间搞得python项目,用的pybind11,当时是py39,用起来非常的爽,似乎一切安好,但最近准备继续整,搞了好半天,一直都导入不了这个module,查了会儿,才发现,构建我这个项目的所用python已经默默的升级到了3.10,突然有种过去的项目经过了一段时间不是很牢靠的感觉。 然后我就在想,为什么会自动更新,查了一下相关的代码,得知,差不多两周前xmake-repo[更新了python 3.10](https://github.com/xmake-io/xmake-repo/commit/b782bbafc3abadd05149be7137a1b92202960fcb),然后我这边机器也自动下载了3.10 一开始是感觉惊讶,repo更新居然影响了旧项目,直到我看到了[这个](https://github.com/xmake-io/xmake-repo/blob/75f4ff4b66a3f1b932522e20d7fd9484f0afae8d/packages/p/pybind11/xmake.lua#L18) ```lua package("pybind11") -- .. -- add_deps("cmake", "python 3.x") --..-- ``` 尝试按照下面方法覆盖python版本参数,没有效果 ```lua add_requires("pybind11") add_requireconfs("pybind11.python", {version = "3.9"}) ``` ### 描述可能的解决方案 最好是可以在`python.library`这个rule的项目里有个选项指定python版本 ### 描述你认为的候选方案 我觉得可以这样...

feature request

Hi! I have a dxf file export from [netDxf](https://github.com/haplokuon/netDxf), like this ![image](https://github.com/vagran/dxf-viewer/assets/37983330/35a6a72f-fda3-48c3-a615-512e19ddcb0b) the LinearDimension in this drawing use `DIMBLK1` and `DIMBLK2` for dimension arrow style, which is `ArchitecturalTick` , but...