You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The files are installed into /usr/local/, however, they should be installed in something like /usr/local/x86_64-w64-mingw32/ (for win64) and /usr/local/i686-w64-mingw32/ (for win32).
This is an issue if I want to compile GLEW for different architectures (e.g. win32 and win64).
I'm not really an expert into Makefiles, but in the Makefile the following to lines hardcode the destination path, but they should be definied like /usr/local/$(HOST), where HOST is defined in the config/Makefile.*-files to the appropriate host.
I want to cross compile GLEW on Ubuntu for mingw-w64.
make install SYSTEM=linux-mingw64
installs the library files into the wrong path:The files are installed into
/usr/local/
, however, they should be installed in something like/usr/local/x86_64-w64-mingw32/
(for win64) and/usr/local/i686-w64-mingw32/
(for win32).This is an issue if I want to compile GLEW for different architectures (e.g. win32 and win64).
I'm not really an expert into Makefiles, but in the
Makefile
the following to lines hardcode the destination path, but they should be definied like/usr/local/$(HOST)
, where HOST is defined in theconfig/Makefile.*
-files to the appropriate host.The text was updated successfully, but these errors were encountered: