使用“mussel”库将 Linux 项目移植到 windows VS2015 平台
Porting Linux project to windows platform with VS2015 using “mussel" library
我发现 vs2015 自带的 mussel 库更像是使用 POSIX 调用。我浏览了提供的安装指南和官方 link,了解到我需要 运行 配置文件,然后是 make。
但是vs2015还没有提供配置文件。
如果以前有人这样做过,我请求你让我知道程序。
musl 不支持 Windows; from the FAQ page:
What are musl’s dependencies?
- Linux 2.6 or later. Earlier versions will suffice for running most simple single-threaded programs, but due to bugs and conformance issues at the kernel level, musl is not offically supported on earlier kernels.
(现在,Windows 10 确实通过 WSL 支持 运行 Linux 二进制文件,但在那种情况下,您将通过 Linux "container" 这完全是另一种游戏)
As it comes as VS2015 along with third party license I thought there should be a way to get it done. The folder location is Microsoft Visual Studio 14.0\VC\vcpackages\IntelliSense\iOS\OSS\musl-1.1.10
如评论中所述,从文件夹名称来看,它似乎只是在为 iOS 个目标编辑代码时帮助 IntelliSense。
我发现 vs2015 自带的 mussel 库更像是使用 POSIX 调用。我浏览了提供的安装指南和官方 link,了解到我需要 运行 配置文件,然后是 make。
但是vs2015还没有提供配置文件。
如果以前有人这样做过,我请求你让我知道程序。
musl 不支持 Windows; from the FAQ page:
What are musl’s dependencies?
- Linux 2.6 or later. Earlier versions will suffice for running most simple single-threaded programs, but due to bugs and conformance issues at the kernel level, musl is not offically supported on earlier kernels.
(现在,Windows 10 确实通过 WSL 支持 运行 Linux 二进制文件,但在那种情况下,您将通过 Linux "container" 这完全是另一种游戏)
As it comes as VS2015 along with third party license I thought there should be a way to get it done. The folder location is Microsoft Visual Studio 14.0\VC\vcpackages\IntelliSense\iOS\OSS\musl-1.1.10
如评论中所述,从文件夹名称来看,它似乎只是在为 iOS 个目标编辑代码时帮助 IntelliSense。