This is the mail archive of the
cygwin-xfree
mailing list for the Cygwin XFree86 project.
Re: Problem running openGL application on cygwin
- From: Ravi M <ravi dot b dot m at gmail dot com>
- To: cygwin-xfree at cygwin dot com
- Date: Thu, 16 Feb 2006 16:29:51 -0600
- Subject: Re: Problem running openGL application on cygwin
- References: <5213e2c60602160921k2806968ev886f6adad2797b4b@mail.gmail.com> <5213e2c60602161232w4cf7f79bw22688d287dc7f85d@mail.gmail.com>
- Reply-to: cygwin-xfree at cygwin dot com
Please ignore the posting. It is nothing to do with the openGL on
cygwin . I had
hardcoded the location on my properties file in one of my program
(STUPID !!! STUPID !! mistake).
Thank you,
Ravi
On 2/16/06, Ravi M <ravi.b.m@gmail.com> wrote:
> Hi All,
> I was able to successfully compile and run an open GL
> application. The problem I am facing is that when I run the
> application in the same directory where the executable resides it
> runs. When I run in any other directory it fails ? Could somebody
> help he what I am doing wrong ? or do I need to set any flag when
> making the executable ?
>
> Following is my make file
>
> CC = /usr/bin/gcc
> CFLAGS = -O1 -g2
> LD_LIBRARY_PATH = -L/usr/X11R6/lib
> LDFLAGS = -lGLw -lGL -lglut -lXm -lX11 -lXt
> INCLUDES = -I/usr/include -I/usr/X11R6/include
>
> COBJS = bunch of .o files
>
>
> #implicit rules for handling src files (GNU-style)
> %.o : %.c
> $(CC) $(CFLAGS) $(INCLUDES) -c $<
>
>
> all: $(COBJS)
> $(CC) $(INCLUDES) $(CFLAGS) $(COBJS) -o genewalker
> $(LD_LIBRARY_PATH) $(LDFLAGS)
>
>
> I did set my
> export LD_LIBRARY_PATH="/usr/X11R6/lib"
>
> Thanks in advance
> Ravi
>
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ: http://x.cygwin.com/docs/faq/