[Otk-usage] setting up the environment
Status: Beta
Brought to you by:
kindman1
|
From: <gy...@co...> - 2006-02-10 20:00:23
|
Is there an IRC channel for OTK? I'm just getting started with playing with OTK. I haven't gotten far! heh. First, figuring out how and what to install for MinGW under WinXP is confusing. What I ended up doing is installing "MinGW Developer Studio" from http://www.parinyasoft.com/ I can compile the sample programs, and I can run gcc from the command prompt. So, that seems to be taken care of. Next, I downloaded "otk_lib_v0.40.zip" and tried to compile it with "gcc -c otk_lib.c -o otk.o" and got the following error messages: In file included from otk_lib.c:150: letter2vector2.c:907: error: syntax error before "uint" letter2vector2.c: In function `otk_memspool': letter2vector2.c:911: error: `spool' undeclared (first use in this function) letter2vector2.c:911: error: (Each undeclared identifier is reported only once letter2vector2.c:911: error: for each function it appears in.) letter2vector2.c:911: error: `len' undeclared (first use in this function) letter2vector2.c:913: error: `n' undeclared (first use in this function) letter2vector2.c:920: error: `data' undeclared (first use in this function) I did see this in the "otk_lib.c" file: /* To Compile on Microsoft: */ /* Set microsoft=1 (below), and GlutEnabled=1, and compile as console application. */ /* (See Microsoft Visual-C.) */ But, I'm not sure where to set those options. I guess Glut is another issue. (I was told that it might not be needed anymore. ?? ) Anyone? |