getopt.h:编译Linux的C代码在Windowsgetopt.h:编译Linux的C代码在W

2019-05-13 18:11发布

我试图让一组九个* .c文件(和九个相关的* .h文件)在Windows下进行编译。

该代码最初被设计在Linux中采取使用标准的GNU Linux的/ C库“getopt.h”命令行参数。 而该库并不适用于构建C代码在Windows中。

我想忽略我的代码做,现在,询问以下问题。 对于那些你熟悉C语言库“getopt.h”:将有可能建立和运行我的Windows代码,如果它依赖于POSIX式的命令行参数? 或者将我必须重新编写代码为Windows工作,通过不同的输入文件(及开沟“getopt.h”依赖)?

Answer 1:

你是对的。 getopt()是POSIX,而不是Windows,你通常必须重新编写所有的命令行参数解析代码。

幸运的是,有一个项目,Xgetopt,这意味着为Windows / MFC类。

http://www.codeproject.com/Articles/1940/XGetopt-A-Unix-compatible-getopt-for-MFC-and-Win32

如果你能在你的项目中得到这个工作,它应该为你节省编码的公平位,并阻止您不必返工所有的解析。

此外,它配备了一个漂亮的图形界面的演示应用程序,你应该找到有用的。

祝好运!



Answer 2:

getopt()实际上是一个非常简单的功能。 我做了一个GitHub的要点吧,代码从这里低于过

#include <string.h>
#include <stdio.h>

int     opterr = 1,             /* if error message should be printed */
  optind = 1,             /* index into parent argv vector */
  optopt,                 /* character checked for validity */
  optreset;               /* reset getopt */
char    *optarg;                /* argument associated with option */

#define BADCH   (int)'?'
#define BADARG  (int)':'
#define EMSG    ""

/*
* getopt --
*      Parse argc/argv argument vector.
*/
int
  getopt(int nargc, char * const nargv[], const char *ostr)
{
  static char *place = EMSG;              /* option letter processing */
  const char *oli;                        /* option letter list index */

  if (optreset || !*place) {              /* update scanning pointer */
    optreset = 0;
    if (optind >= nargc || *(place = nargv[optind]) != '-') {
      place = EMSG;
      return (-1);
    }
    if (place[1] && *++place == '-') {      /* found "--" */
      ++optind;
      place = EMSG;
      return (-1);
    }
  }                                       /* option letter okay? */
  if ((optopt = (int)*place++) == (int)':' ||
    !(oli = strchr(ostr, optopt))) {
      /*
      * if the user didn't specify '-' as an option,
      * assume it means -1.
      */
      if (optopt == (int)'-')
        return (-1);
      if (!*place)
        ++optind;
      if (opterr && *ostr != ':')
        (void)printf("illegal option -- %c\n", optopt);
      return (BADCH);
  }
  if (*++oli != ':') {                    /* don't need argument */
    optarg = NULL;
    if (!*place)
      ++optind;
  }
  else {                                  /* need an argument */
    if (*place)                     /* no white space */
      optarg = place;
    else if (nargc <= ++optind) {   /* no arg */
      place = EMSG;
      if (*ostr == ':')
        return (BADARG);
      if (opterr)
        (void)printf("option requires an argument -- %c\n", optopt);
      return (BADCH);
    }
    else                            /* white space */
      optarg = nargv[optind];
    place = EMSG;
    ++optind;
  }
  return (optopt);                        /* dump back option letter */
}


Answer 3:

编译getopt windows下的代码。

我这样做是因为我想explicilty使用在Windows(命令行)应用其命令行的分析功能。

我成功地做到这一点使用VC2010

至于我记得我遇到了这样做没有显著的问题。

getopt.c getoptl.c



Answer 4:

有使用代码从MinGW的运行时(由Todd C.米勒)一个possibilty:

http://sourceforge.net/apps/trac/mingw-w64/browser/trunk/mingw-w64-crt/misc

我已使用这些文件和脚本的CMake(可以生成VS项目),一个小型图书馆:

https://github.com/alex85k/wingetopt



Answer 5:

你可以尝试寻找到巧舌如簧-2.0作为替代。 这将是一个有点大只是需要一个选项解析器。 UP侧将有机会获得在巧舌如簧所有其他精彩的玩具。

只是说实话,我还没有试过得到这个工作(我主要是坚持到Linux),所以因人而异。

越来越油嘴滑舌在窗口的工作: 方法文档

哦,你可能会探索使用的MinGW的编译环境,并为您的IDE视觉工作室。

巧舌如簧为Win32: 方法文档

Anywho,希望这有助于。



Answer 6:

如果你只是想getopt说明在Visual C ++中使用++没有其他的依赖,我有口从最新的GNU libc的getopt.c 2.12,所有新酒店特色。唯一的区别是,你必须使用替代字符TCHAR,但是这是非常常见的窗口。

只需下载源代码,制作,复制libgetopt.lib和getopt.h getopt_int.h到您的项目。

你也可以让它在根目录使用CMakeList.txt。

下载从GitHub源



Answer 7:

该getopt.h在git的存在,我有下载它,它为我工作:

https://gist.github.com/ashelly/7776712



Answer 8:

从我记得getopt.h ,它所做的是从你的主函数处理的argv提供一个方便的解析器:

int main(int argc, char * argv[])
{
}

Windows控制台程序仍然有一个主要方法,所以你可以简单地通过你的argv数组环和自己解析参数。 例如

for ( int i = 1; i < argc; i++ )
{
  if (!strcmp(argv[i], "-f"))
    filename = argv[++i];
}


文章来源: getopt.h: Compiling Linux C-Code in Windows