好吧,我厌倦了寻找问题,所以我想现在是时候问了 :) 在我描述问题之前,我的项目在 Visual 2013 上运行良好,但在 suse linux g++ 4.6.2 上运行良好
我们假设使用一个库 cio,它由三个文件 console.h、console.cpp 和 keys.h 组成。使用三个文件的主程序称为happy.cpp。
现在在 Visual Studio 2013 上一切正常。但是当我尝试在 linux 上编译时,它给了我很多错误。
以下是项目的简要代码说明
//console.h
namespace cio {
// Console holds the state of the Console Input Output Facility
//
class Console {
//some varialbes and functions
int getRows() const;
};
extern Console console; // console object - external linkage
} // end namespace cio
===============================================================================
//console.cpp
/* table of platforms */
#define CIO_LINUX 1
#define CIO_MICROSOFT 2
#define CIO_BORLAND 3
#define CIO_UNIX 4
/* auto-select your platform here */
#if defined __BORLANDC__
#define CIO_PLATFORM CIO_BORLAND
#define CIO_LOWER_LEVEL_H_ <conio.h>
#elif defined _MSC_VER
#define CIO_PLATFORM CIO_MICROSOFT
#include <windows.h>
#define CIO_LOWER_LEVEL_H_ <conio.h>
#elif defined __MACH__
#define CIO_PLATFORM CIO_UNIX
#define CIO_LOWER_LEVEL_H_ <curses.h>
#elif defined __GNUC__
#define CIO_PLATFORM CIO_LINUX
#define CIO_LOWER_LEVEL_H_ <ncurses.h>
#elif !defined __BORLANDC__ && !defined _MSC_VER && !defined __GNUC__ && !defined __MACH__
#error CONSOLE_PLT is undefined
#endif
extern "C" {
#include CIO_LOWER_LEVEL_H_
}
#include "console.h"
#include "keys.h"
namespace cio { // continuation of cio namespace
// getRows retrieves the number of rows in the output object
//
int Console::getRows() const {
return bufrows;
}
} // end namespace cio
================================================================================
//////happy.cpp
#include "console.h"
#include "keys.h" // for ESCAPE
using namespace cio;
int main() {
int key, rows, columns;
// get screen dimensions
rows = console.getRows();
}
在使用“g++ happyface.cpp”命令编译时,出现以下错误
happyface.cpp:(.text+0xd): 未定义对cio::console'
happyface.cpp:(.text+0x12): undefined reference to
cio::Console::getRows()的引用
我不知道我在这里做错了什么?我还尝试包含路径“g++ -I ~/happy/console.h ~/happy/console.cpp ~/happy/keys.h”,但仍然是同样的问题。