gSoap error : xlocale.h No such file or directory
gSoap error : xlocale.h No such file or directory
我正在尝试在 Windows 7 中创建 C++ soap 网络服务客户端。我正在使用 gSoap,并且我遵循了 gSoap tutorial。
第一个和第二个命令有效,但
c++ -o main main.cpp soapC.cpp soapcalcProxy.cpp stdsoap2.cpp
命令无效。
错误是
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
C:\Users\user\Desktop\soap>C:\MinGW\bin\mingw32-g++.exe -o main main.cpp soapC.cpp soapcalcProxy.cpp stdsoap2.cpp
In file included from soapStub.h:22:0,
from soapH.h:16,
from calc.nsmap:2,
from main.cpp:16:
stdsoap2.h:651:23: fatal error: xlocale.h: No such file or directory
compilation terminated.
In file included from soapStub.h:22:0,
from soapH.h:16,
from soapC.cpp:19:
stdsoap2.h:651:23: fatal error: xlocale.h: No such file or directory
compilation terminated.
In file included from soapStub.h:22:0,
from soapH.h:16,
from soapcalcProxy.h:16,
from soapcalcProxy.cpp:14:
stdsoap2.h:651:23: fatal error: xlocale.h: No such file or directory
compilation terminated.
In file included from stdsoap2.cpp:60:0:
stdsoap2.h:651:23: fatal error: xlocale.h: No such file or directory
compilation terminated.
我该如何解决?
我正在使用 Windows 7 64 位和 mingw。
谢谢
我遇到了同样的问题,我在编译的时候加上-DWITH_NO_C_LOCALE
选项解决了。
资料来源:https://sourceforge.net/p/gsoap2/bugs/1098/
我正在尝试在 Windows 7 中创建 C++ soap 网络服务客户端。我正在使用 gSoap,并且我遵循了 gSoap tutorial。
第一个和第二个命令有效,但
c++ -o main main.cpp soapC.cpp soapcalcProxy.cpp stdsoap2.cpp
命令无效。
错误是
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
C:\Users\user\Desktop\soap>C:\MinGW\bin\mingw32-g++.exe -o main main.cpp soapC.cpp soapcalcProxy.cpp stdsoap2.cpp
In file included from soapStub.h:22:0,
from soapH.h:16,
from calc.nsmap:2,
from main.cpp:16:
stdsoap2.h:651:23: fatal error: xlocale.h: No such file or directory
compilation terminated.
In file included from soapStub.h:22:0,
from soapH.h:16,
from soapC.cpp:19:
stdsoap2.h:651:23: fatal error: xlocale.h: No such file or directory
compilation terminated.
In file included from soapStub.h:22:0,
from soapH.h:16,
from soapcalcProxy.h:16,
from soapcalcProxy.cpp:14:
stdsoap2.h:651:23: fatal error: xlocale.h: No such file or directory
compilation terminated.
In file included from stdsoap2.cpp:60:0:
stdsoap2.h:651:23: fatal error: xlocale.h: No such file or directory
compilation terminated.
我该如何解决? 我正在使用 Windows 7 64 位和 mingw。 谢谢
我遇到了同样的问题,我在编译的时候加上-DWITH_NO_C_LOCALE
选项解决了。
资料来源:https://sourceforge.net/p/gsoap2/bugs/1098/