我正在尝试从项目中编译示例,以下代码是makefile:
CC = gcc
MACHINE= $(shell uname -s)
#declaration des options du compilateur
#PG_FLAGS = -DOPENGL_1_5
ifeq ($(MACHINE), Darwin)
GL_LDFLAGS = -framework OpenGL -framework GLUT -framework Cocoa -framework
Carbon
else
GL_LDFLAGS = -lopengl32 -lglu32 -lglut
endif
CFLAGS = -Wall
LDFLAGS = -lm $(GL_LDFLAGS)
PROGNAME = palette
HEADERS = image.h
SOURCES = Main.c ppm.c fonctions.c
我尝试过:“ mingw32-make”,我得到了:
process_begin: CreateProcess(NULL, uname -s, ...) failed.
gcc Main.o ppm.o fonctions.o -lm -lopengl32 -lglu32 -lglut -o palette
C:/TDM-GCC-64/bin/../lib/gcc/x86_64-w64-mingw32/5.1.0/../../../../x86_64-
w64-mingw32/bin/ld.exe: cannot find -lglut
collect2.exe: error: ld returned 1 exit status
Makefile:25: recipe for target 'palette' failed
mingw32-make: *** [palette] Error
但是我安装了glut库 我正在使用Windows 10
答案 0 :(得分:0)
我找到了解决此问题的方法
GLUT库已被最新版本3.7放弃。另外,GLUT的许可证与某些软件发行版不兼容.....所以我使用安装了它的freeGLUT并可以正常使用
并有下载链接:
https://www.transmissionzero.co.uk/computing/using-glut-with-mingw/
好运evryone :)