huangqinjin
huangqinjin
@mclow Should I add the comment in file I changed?
@pengxu-github check if you build correctly. The SONAME should not end with version info. Then delete cmake cache and rebuild your apk. ``` arm64-v8a$ readelf -d libboost_filesystem.so Dynamic section at...
`运行` 使用的是`python3`: https://github.com/purocean/yn/blob/4cfd1acf0fa5de7f80f8e4129686a84a4b4c97bf/src/main/server/run.ts#L31 而 `在终端中运行` 使用的是 `python`: https://github.com/purocean/yn/blob/4cfd1acf0fa5de7f80f8e4129686a84a4b4c97bf/src/renderer/components/Xterm.vue#L138 Windows 上应该没有 `python3.exe`, 在 Linux 上 `python` 默认是符号链接到 `python2.7`。需要把这两种运行统一起来。
各种解析器都有自己的Markdown扩展语法,如 GFM,GLFM。yn有硬性的要求,一定要兼容某个解析器吗?如果没有的话,只是不能高亮,应该很理想了。[FEATURES.md](https://github.com/purocean/yn/blob/develop/help/FEATURES.md) 里有很多 GitHub 都不能正确渲染,包括我最关注的 LaTeX,所以我基本放弃 GFM 作笔记。
A GitHub Action like https://github.com/msys2/setup-msys2 is highly desirable from my POV, which provides easy installation and caching, (though current installation is already easy).
I have some concern. 1. The file path handling in command line options is not easy (and not exhaustive, no doubt) as you see https://github.com/mstorsjo/msvc-wine/blob/264e40f2d762e909b0f9cee5d6fa4e2da9fd61a4/wrappers/wine-msvc.sh#L27-L66 `CMAKE_NINJA_FORCE_RESPONSE_FILE=TRUE` makes `cl.exe` use `@file`...
> The necessary patches have been merged upstream, in llvm-project and mingw-w64 (and backported to the 18.x release branch of LLVM), so this should work now. @mstorsjo Great job! Could...
The stuck issue and `mt` issue are typical issues of missing `msvctricks.exe`. Please check if it is in `/opt/msvc/bin`.
Did you install wine before running `install.h`, there should not be problems if yes.
I wrote a bash script `cmcldeps` for the same purpose of `cmcldeps.exe` on Windows (shamelessly copied the implementation from https://gitlab.kitware.com/cmake/cmake/-/blob/v3.26.1/Source/cmcldeps.cxx). I put the source code here if someone also need...