gpt4 book ai didi

c++ - 如何在 OS X 上使用 SDL2 编译 C++ 程序?

转载 作者:搜寻专家 更新时间:2023-10-31 01:38:46 24 4
gpt4 key购买 nike

这是一个非常菜鸟的问题。基本上,我似乎无法使用 SDL2 外部库在 OSX (Yosemite) 上编译基本的 Hello World 程序。

我试图在没有任何 IDE 帮助的情况下在控制台上执行此操作。我已经安装了 SDL 2.0.3,它位于 /Library/Frameworks/SDL2.framework 路径上。

我的主文件是这样的:

#include <SDL2/SDL.h>
#include <stdio.h>

bool init();
void close();

SDL_Window* gameWindow = NULL;
SDL_Surface* gameScreenSurface = NULL;

bool init()
{
...
}

void close()
{
...
}

int main( int argc, char** argv)
{
if( !init() )
{
printf( "Failed to initialize!\n" );
}
else
{
SDL_Delay( 2000 );
}
close();
return 0;
}

我还有一个 makefile(取 self 在某处找到的示例),如下所示:

CC = g++
LDFLAGS = -g -Wall

PROGNAME = doom
SOURCES = main.cpp
INCLUDES =
OBJECTS = $(subst %.cc, %.o, $(SOURCES))
ROOTCFLAGS := $(shell root-config --cflags)
ROOTLIBS := $(shell root-config --libs)
ROOTGLIBS := $(shell root-config --glibs)
ROOTLIBS := $(shell root-config --nonew --libs)
CFLAGS += $(ROOTCFLAGS)
LIBS += $(ROOTLIBS)

all: doom

$(PROGNAME): $(OBJECTS)
$(CC) $(LDFLAGS) -o doom $(OBJECTS) $(LIBS)

%.o : %.cc $(INCLUDES)
$(CC) ${CFLAGS} -c -g -o $@ $<

仅此而已。当我运行 make 时,我收到了这个响应:

make: root-config: Command not found
make: root-config: Command not found
make: root-config: Command not found
make: root-config: Command not found
g++ -g -Wall -o doom main.cpp
Undefined symbols for architecture x86_64:
"_SDL_CreateWindow", referenced from:
init() in main-8b6fae.o
"_SDL_Delay", referenced from:
_main in main-8b6fae.o
"_SDL_DestroyWindow", referenced from:
close() in main-8b6fae.o
"_SDL_GetError", referenced from:
init() in main-8b6fae.o
"_SDL_GetWindowSurface", referenced from:
init() in main-8b6fae.o
"_SDL_Init", referenced from:
init() in main-8b6fae.o
"_SDL_Quit", referenced from:
close() in main-8b6fae.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [doom] Error 1

那么,我可以得到一些指导吗?我对从哪里开始有点迷茫。我以前从未在 OSX 或任何基于 Unix 的操作系统上编译过程序。

我搜索了我丢失的那个 root-config 东西,似乎我必须安装一个名为 Root 的库。我做到了。将其解压缩到目录中,不知道从那里去哪里。

提前致谢。

最佳答案

您找到的 makefile 包含用于 ROOT 数据分析框架的变量,而不是用于 SDL2 的变量。

尝试运行

g++ $(sdl2-config --cflags) -g -Wall -o doom  main.cpp $(sdl2-config --libs)

开始。

关于c++ - 如何在 OS X 上使用 SDL2 编译 C++ 程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32293144/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com