I'm trying to cross-compile Clutter 1.0 for a GNU/Linux target. The target
supports EGL and Open GL ES 2.0, and it does not include X Windows. (The host
system runs Kubuntu.)
Variables PATH, CC, CPP, and LD are set to use build tools from the SDK; these
are set so configure will not use files from the host:
export CPPFLAGS="-I${TOOLS_ROOT}/include"
export LDFLAGS="-L${TOOLS_ROOT}/lib"
This command fails:
./configure --with-flavor=eglnative --with-gles=2.0
It also fails if I add --without-x .
The result is:
configure:14174: checking for GL/glx.h
configure:14183: result: no
configure:14195: error: Unable to locate required GLX headers
The target Linux system is created by an Intel SDK that has no glx.h.
Any idea what's wrong here?
--
To unsubscribe send a mail to [email protected]