A few fixes in cygwin docs

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@1140 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
beuc 2012-03-15 20:37:41 +00:00
parent e74cb052f0
commit 41c6d2ada6
2 changed files with 22 additions and 25 deletions

View File

@ -101,7 +101,7 @@ clean:
Quelques remarques sur le makefile Quelques remarques sur le Makefile
* Ce makefile crée une dll, une bibliothèque statique (une archive, en * Ce makefile crée une dll, une bibliothèque statique (une archive, en
d'autres termes) et la bibliothèque dynamique qui permettra l'utilisation d'autres termes) et la bibliothèque dynamique qui permettra l'utilisation
@ -150,7 +150,7 @@ Installation
include, correspondants à Glut, si vous l'avez installé avec Cygwin. include, correspondants à Glut, si vous l'avez installé avec Cygwin.
Utilisation de la librairie Utilisation de la bibliothèque
* Nous allons tester avec le programme shapes, présent dans * Nous allons tester avec le programme shapes, présent dans
progs/demos/shapes progs/demos/shapes
@ -214,5 +214,5 @@ Quelque chose a surv
(paix à ses cendres). (paix à ses cendres).
o Rien de particulier à signaler. o Rien de particulier à signaler.
* Merci à tous les mainteneurs courageux de Freeglut, qu'on croyait mort, * Merci à tous les mainteneurs courageux de Freeglut, qu'on croyait morts,
mais qui bouge encore. mais qui bougent encore.

View File

@ -8,24 +8,21 @@ Freeglut is an open-source evolution of GLUT.
Under Windows, one can use it with Cygwin. Under Windows, one can use it with Cygwin.
Easy? Yes, if one agrees to distribute "cygwin1.dll". Easy? Yes, if one agrees to distribute "cygwin1.dll".
Let us help freeglut gain its independence ! Let us help freeglut gain its independence !
m.à.j 10/7/2009: generation of a library for linking without the DLL. Update 10/7/2009: generation of a library for linking without the DLL.
Recovery of the sources Grabbing the sources
* Download the sources of version 2.6.0 which integrates recent changes. * Download the sources for version 2.6.0 which integrates recent changes.
* For the moment, it is a RC (Release Candidate), but the final version * Using version 2.6 is better than the 2.4-stable branch because many
should not delay.
* The use of the 2.6 is preferable with the 2.4-stable branch because many
bugs have been corrected. bugs have been corrected.
* You will find the sources on the site of Freeglut: * You will find the sources on the site of Freeglut:
o http://freeglut.sourceforge.net/ o http://freeglut.sourceforge.net/
Objectives and preparation Goals
Objectives
* We will create a DLL related to Cygwin, and an independent static library * We will create a DLL for Cygwin, and an independent static library
* We will also create a dynamic library, allowing linking with the DLL. * We will also create a dynamic library, allowing linking with the DLL.
@ -67,7 +64,7 @@ Compilation
* Here Makefile which will make the deal: * Here Makefile which will make the deal:
#Makefile for Freeglut 2.6.0-rc and Cygwin #Makefile for Freeglut 2.6.0-rc and Cygwin
#To place in the directory “src/Common” #To place in the directory 'src/Common'
sources=$ (wildcard *.c) sources=$ (wildcard *.c)
objs=$ (sources: .c=.o) objs=$ (sources: .c=.o)
@ -81,25 +78,25 @@ nocyg=-mno-cygwin - mwindows
all: $ (objs) all: $ (objs)
#construction DLL related to cygwin1.dll #construction DLL related to cygwin1.dll
GCC $ (nocyg) $ (objs) - shared $ (LDFLAGS) - O $ (libname) .dll gcc $(nocyg) $(objs) -shared $(LDFLAGS) -o $(libname).dll
Nm $ (libname) .dll | awk “BEGIN {print “EXPORTS”} /T _glut/{sub (/^.*T _/,” \ T "); print}” > $ (libname) .def nm $(libname).dll | awk 'BEGIN { print "EXPORTS" } /T _glut/ {sub( /^.*T _/, "\t"); print}' > $(libname).def
dlltool --dllname $(libname).dll --input-def $(libname).def --output-lib lib$(libname)dll.a dlltool --dllname $(libname).dll --input-def $(libname).def --output-lib lib$(libname)dll.a
#construction static library independent of cygwin #construction static library independent of cygwin
rear Cr lib$ (libname) .a $ (objs) ar cr lib$(libname).a $(objs)
#pas inevitably obligatory (creation of an index to accelerate the accesses) #pas inevitably obligatory (creation of an index to accelerate the accesses)
ranlib lib$(libname).a ranlib lib$(libname).a
%.o: %.c %.o: %.c
GCC $ (nocyg) - C $ (CFLAGS) $< gcc $(nocyg) -c $(CFLAGS) $<
clean: clean:
rm - F *.o $ (libname) .dll $ (libname) .def lib$ (libname) dll.a lib$ (libname) .a rm -f *.o $(libname).dll $(libname).def lib$(libname)dll.a lib$(libname).a
Some remarks on the makefile Some remarks on the Makefile
* This makefile creates a DLL, a static library (a file, in other words) and * This makefile creates a DLL, a static library (a file, in other words) and
the dynamic library which will allow the use of the DLL. the dynamic library which will allow the use of the DLL.
@ -127,7 +124,7 @@ Some remarks on the makefile
library the functions that are not related to freeglut. library the functions that are not related to freeglut.
o then, one uses dlltool in a very traditional way. o then, one uses dlltool in a very traditional way.
Nm $ (libname) .dll | awk “BEGIN {print “EXPORTS”} /T _glut/{sub (/^.*T _/,” \ T "); print}” > $ (libname) .def nm $(libname).dll | awk 'BEGIN { print "EXPORTS" } /T _glut/ {sub( /^.*T _/, "\t"); print}' > $(libname).def
dlltool --dllname $(libname).dll --input-def $(libname).def --output-lib lib$(libname)dll.a dlltool --dllname $(libname).dll --input-def $(libname).def --output-lib lib$(libname)dll.a
@ -202,7 +199,7 @@ Where are the dooooocs?
o http://jocelyn.frechot.free.fr/freeglut/ o http://jocelyn.frechot.free.fr/freeglut/
Something survived Something survived...
* I also tested the recompiling of the demonstrations of the original lib * I also tested the recompiling of the demonstrations of the original lib
GLUT (peace with its ashes). GLUT (peace with its ashes).