0

我在 Visual Studio 2012 中编写了一个类程序,我想在 Linux 机器上运行它。我试过在 Linux 机器上编译,但我相信我使用的一些库不是跨平台兼容的。无论如何我可以创建一个可以在 Linux 上运行的 .o 文件,而不需要我更改我的代码?

语言:C++ 以下是我使用的库:

#include <iostream>
#include <queue>
#include <map>
#include <climits> 
#include <iterator>
#include <algorithm>
#include <fstream>
#include <string>
#include <iomanip>

当我尝试在 Linux 中编译时会发生什么

Main.cpp: In function ‘int main()’:
Main.cpp:110:24: error: no matching function for call to             'std::basic_ifstream<char>::basic_ifstream(std::string&)’
Main.cpp:110:24: note: candidates are:
/usr/include/c++/4.6/fstream:460:7: note: std::basic_ifstream<_CharT,     _Traits>::basic_ifstream(const char*, std::ios_base::openmode) [with _CharT = char, _Traits     = std::char_traits<char>, std::ios_base::openmode = std::_Ios_Openmode]
/usr/include/c++/4.6/fstream:460:7: note:   no known conversion for argument 1 from     ‘std::string {aka std::basic_string<char>}’ to ‘const char*’
/usr/include/c++/4.6/fstream:446:7: note: std::basic_ifstream<_CharT,     _Traits>::basic_ifstream() [with _CharT = char, _Traits = std::char_traits<char>]
/usr/include/c++/4.6/fstream:446:7: note:   candidate expects 0 arguments, 1 provided
/usr/include/c++/4.6/fstream:420:11: note:     std::basic_ifstream<char>::basic_ifstream(const std::basic_ifstream<char>&)
/usr/include/c++/4.6/fstream:420:11: note:   no known conversion for argument 1 from     ‘std::string {aka std::basic_string<char>}’ to ‘const std::basic_ifstream<char>&’
4

3 回答 3

2

您列出的所有头文件似乎都不是特定于 Visual Studio 或 Windows,因此假设您已在 Linux 机器上安装了正确的 C++ 标准库,它应该只是编译。

如果你真的想要交叉编译,那么你必须将源代码gcc、C++ 标准库头文件和二进制文件下载到你的 Windows 机器上。然后为交叉编译构建编译器(这可能意味着安装“windows to Unix compatible version of gcc”,例如 Cygnus cygwin 或 gcc MingW)。实现这一目标并不是一蹴而就的。相信我,除非你真的必须这样做,否则你不想这样做。

如果您出于某种原因不想在 linux 机器本身上编译,更好的解决方案是在您的 Windows 机器上安装一个虚拟机,并在其上安装 Linux,然后使用该 Linux VM 作为您的编译系统。

编辑:

为了澄清,根据问题中的编辑:问题似乎是 C++11 功能的使用,这可能是 Visual Studio 中的默认设置,其中 gcc/g++ 将采用更保留的方法。解决方案是告诉编译器-std=c++11在命令行上使用 C++ 11 标准进行构建。这应该允许使用字符串中的名称打开文件的扩展正常工作。

于 2013-07-15T16:04:44.113 回答
1

老实说,你最好用对跨平台更友好的东西来构建它,尤其是看到它是 C++,没有理由依赖 Visual Studio。尝试查看类似 code::blocks 的内容来构建它以在 linux 上运行。

于 2013-07-15T15:58:42.153 回答
1

我想即使你找到了方法,那也行不通。需要在 Linux Machine 中单独生成 .o

于 2013-07-15T15:59:03.327 回答