This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: XCreateSimpleWindow and SIGSEGV


Leo,

> 
> Thanx to Earnie 
> I've got my program Compiling 
> I found that XCreateSimpleWindow is giving me 
> SIGSEGV fault Anyone have the same problem
> Have compiled with mmalloc,downloaded the Latest Binaries on NT
> and search archives but to no avail
> Also have X-Server and DISPLAY set
> (Do get the warning message 
>     WinMainCRTStartup ; defaulting to 00401000 )
> 
> Anyone see any problem with the following ?

My guess is that you are not using the correct headers.
I saved your code to a file named xtest.c and compiled it like this
(egcs-1.02, NT4 SP3):

gcc -I/usr/X11R6.3/include -o xtest xtest.c /usr/X11R6.3/lib/libX11.a

and I get no SIGSEGV. However, if I compile it as:

gcc  -o xtest xtest.c /usr/X11R6.3/lib/libX11.a

it builds allright but gives the same SIGSEGV you got. When you
omit the  -I/usr/X11R6.3/include you are likely using the
X headers part of tcl/tk80, therefore the pointer incompatibility.

-- 
Arlindo da Silva    
dasilva@alum.mit.edu




-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]