一个简短的c++文件和makefile:我可以在shell中制作,但在Eclipse中构建它时会遇到很多错误

A short c++ file and makefile: I can make in the shell, but get lots of error while building it in the Eclipse

本文关键字:但在 Eclipse 构建 错误 遇到 shell 一个 c++ 我可以 makefile 文件      更新时间:2023-10-16

我正在使用makefile编译一个非常短的c++文件。c++文件使用了一个名为ClanLib的外部库,但这不是重点,因为我可以使用"make"命令在shell中编译它,所以c++文件和makefile都可以。

#include <ClanLib/core.h>
#include <ClanLib/application.h>
class ConsoleProgram {
public:
    static int main(const std::vector<CL_String> &args);
};
CL_ClanApplication app(&ConsoleProgram::main);
int ConsoleProgram::main(const std::vector<CL_String> &args) {
    CL_SetupCore setup_core;
    CL_ConsoleWindow console_window("Console");
    CL_Console::write_line("Hello World!");
    CL_Console::wait_for_key();
    return 0;
}


BIN     = main
OBJF    = main.o
LIBS    = clanCore  clanDisplay  clanGL  clanGL1  clanApp clanSWRender
VERSION = 2.3
PACKAGES = $(patsubst %, %-$(VERSION), $(LIBS))
INCLUDE += -I/usr/include/ClanLib-2.3/ 
CXXFLAGS += $(INCLUDE) `pkg-config --cflags $(PACKAGES)` -pthread
all: $(BIN)
$(BIN): $(OBJF)
    $(CXX) $(CXXFLAGS) $(OBJF) -o $(BIN) `pkg-config --libs $(PACKAGES)`
clean:
    find . -name '*.o' -type f -print -exec rm -rf {} ;
    rm -f $(BIN)
%.o : %.cpp
    $(CXX) $(CXXFLAGS) -c $< -o $@
%.o : %.hpp
    $(CXX) $(CXXFLAGS) -c $< -o $@

但我在日食中编译它时遇到了很多错误,我从早上开始就在谷歌上搜索,但没有任何线索。

/usr/include/ClanLib-2.3/ClanLib/Core/Crypto/aes128_decrypt.h:116:2: error: ‘shared_ptr’ in namespace ‘std’ does not name a type
In file included from /usr/include/ClanLib-2.3/ClanLib/core.h:217:0,
                 from main.cpp:1:
/usr/include/ClanLib-2.3/ClanLib/Core/Crypto/aes192_encrypt.h:114:2: error: ‘shared_ptr’ in namespace ‘std’ does not name a type
In file included from /usr/include/ClanLib-2.3/ClanLib/core.h:218:0,
                 from main.cpp:1:
/usr/include/ClanLib-2.3/ClanLib/Core/Crypto/aes192_decrypt.h:116:2: error: ‘shared_ptr’ in namespace ‘std’ does not name a type
In file included from /usr/include/ClanLib-2.3/ClanLib/core.h:219:0,
                 from main.cpp:1:
/usr/include/ClanLib-2.3/ClanLib/Core/Crypto/aes256_encrypt.h:114:2: error: ‘shared_ptr’ in namespace ‘std’ does not name a type
In file included from /usr/include/ClanLib-2.3/ClanLib/core.h:220:0,
                 from main.cpp:1:
/usr/include/ClanLib-2.3/ClanLib/Core/Crypto/aes256_decrypt.h:116:2: error: ‘shared_ptr’ in namespace ‘std’ does not name a type
make: *** [main.o] Error 1

任何线索或建议都将不胜感激。

我用的是Fedora 17 x86_64,黯然失色的靛蓝。

您需要将std=c++0x添加到g++编译器标志中才能获得std::shared_ptr

相关文章: