How do I link with GLU?

时光怂恿深爱的人放手 提交于 2021-01-28 22:53:24

问题


I've just discovered FLTK and I made a makefile for my test. Here is my makefile:


################ template makefile ##############
# We don't know what compiler to use to build fltk on this machine - but fltk-config does...
CC  = $(shell fltk-config --cc)
CXX = $(shell fltk-config --cxx)

# Set the flags for compiler: fltk-config knows the basic settings, then we can add our own...
CFLAGS   = $(shell fltk-config --cflags)
CXXFLAGS = $(shell fltk-config --cxxflags) -I/System/Library/Frameworks/OpenGL.framework/Versions/A/

# We don't know what libraries to link with: fltk-config does...
LINKFLTK = $(shell fltk-config --ldstaticflags)
LINKFLTK_GL = $(shell fltk-config --use-gl --ldstaticflags) -lGLU
LINKFLTK_IMG = $(shell fltk-config --use-images --ldstaticflags)

# Possible steps to run after linking...
STRIP      = strip
POSTBUILD  = fltk-config --post # Required on OSX, does nothing on other platforms, so safe to call
TARGET     = CompletedFile

# Define what your target application is called
all: $(TARGET)

# Define how to build the various object files... -snip-

# Now define how to link the final app - let's assume it needs image and OpenGL support
$(TARGET): MyWindow.o main.o 
        $(CXX) -o $@ MyWindow.o main.o  $(LINKFLTK_IMG) $(LINKFLTK_GL)
        $(STRIP) $@
        $(POSTBUILD) $@  # only required on OSX, but call it anyway for portability

############### end #################

(Heres the object file code:)

main.o: main.cpp MyWindow.h main.h 
        $(CXX) -c $< \
            $(CXXFLAGS)

MyWindow.o: MyWindow.cpp MyWindow.h $(CXX) -c $< \ $(CXXFLAGS)

Here is the error it gives me:
In file included from MyWindow.cpp:10:
MyWindow.h:14:20: error: GL/glu.h: No such file or directory
MyWindow.cpp: In member function ‘virtual void MyWindow::draw()’:
MyWindow.cpp:49: error: ‘gluPerspective’ was not declared in this scope
make: * [MyWindow.o] Error 1
(The code is irrelevant)

回答1:


Depending on the fltk version you are using it has some of it's own openGL headers. I add the following lines to my include libraries: -lfltk -lfltk_gl -lGL -lGLU

Overkill but it gets the job done.




回答2:


The compiler can't find your GLU.h header. Adjust your #include or -I switch to point to the right location.



来源:https://stackoverflow.com/questions/4909532/how-do-i-link-with-glu

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!