有没有好的在线教程来编写可移植的 C 语言?

发布于 2024-10-31 10:39:23 字数 487 浏览 0 评论 0原文

我正在使用一些可移植 C 语言开发的工具,这些工具可在 Windows Visual Studio 2008 中运行,而在 Ubuntu Linux 中的 gcc 则基于 #ifdef _WIN32,但添加对 Solaris 的支持似乎更棘手,特别是如果我想要的话支持cc以及gcc

举个例子,我有一些代码将 sprintf 放入已分配的内存缓冲区中,该缓冲区在 Linux/gcc 和 _vscprintf/vsprintf 上使用 vasprintf 在 Windows/MSVC 上。两者在 Solaris 上都不可用,我可以使用 vsnprintf,但我不知道要向我的 #ifdef 添加什么内容,也不知道是否应该转向其他内容。

希望我不必再用 cygwin、mingw 进行配置。

I have some tools I'm working on in portable C that works in Windows Visual Studio 2008 and gcc in Ubuntu Linux based on #ifdef _WIN32 but adding support for Solaris seems to be trickier, especially if I want to support cc as well as gcc.

For one example I have some code which sprintfs into an allocated memory buffer which uses vasprintf on Linux/gcc and _vscprintf/vsprintf on Windows/MSVC. Neither are available on Solaris where I could use vsnprintf but I have no idea what to add to my #ifdefs or whether I should move to something else.

Hopefully I don't have to move to configure with cygwin, mingw.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

猫卆 2024-11-07 10:39:23

autoconf(1) 手册有一个 可移植 C 编程部分

The autoconf(1) manual has a section on portable C programming.

俯瞰星空 2024-11-07 10:39:23

进行此类测试的唯一真正方法是使用 gnu 的 autoconf + 配置(或只是简单的配置)之类的东西。然后,您可以测试 vsprintf 是否存在,对 vasprintf 的测试失败,对 vsnprintf 的测试失败,等等。然后您可以进行配置来定义要在代码中使用的 HAS_VSPRINTF 等,并围绕正确的位置编写一个包装函数功能。

这将是最可移植的测试方法,也是最可移植的解决方案编码方法,尽管可能也是最麻烦的 - 不过,这肯定是我对生产代码所做的事情。

The only real way to do a test like this is to use something like gnu's autoconf + configure (or just plain configure). You can then test to see if vsprintf exists, failing that test for vasprintf, failing that test for vsnprintf, etc.. You can then get configure to define HAS_VSPRINTF and the like to use in your code, and write a wrapper function around the correct function.

This would be the most portable way to test,and the most portable way to then code up a solution, though perhaps also the most cumbersome - it'd definitely be what I'd do for production code though.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文