在*Ubuntu上安装gloss(特别是OpenGLRaw依赖项)时,"*缺少C库:GL"

Gar*_*ock 9 opengl haskell openglraw gloss

尝试安装光泽时出现以下错误:

Configuring OpenGLRaw-1.5.0.1...
Failed to install OpenGLRaw-1.5.0.1
Build log ( /home/<homdir>/.cabal/logs/OpenGLRaw-1.5.0.1.log ):
Configuring OpenGLRaw-1.5.0.1...
setup-Simple-Cabal-1.18.1.5-x86_64-linux-ghc-7.8.4: Missing dependency on a
foreign library:
* Missing C library: GL
This problem can usually be solved by installing the system package that
provides this library (you may need the "-dev" version). If the library is
already installed but in a non-standard location then you can use the flags
Run Code Online (Sandbox Code Playgroud)

通常我会尝试libgl-dev根据通常的命名约定进行安装,但是没有这样的库.

Gar*_*ock 15

对于大多数缺少的C库,很明显要安装什么; 对于openGL来说并非如此.对我来说,安装以下软件包会让事情再次发生变化

sudo apt-get install freeglut3 freeglut3-dev
Run Code Online (Sandbox Code Playgroud)