... I don't think that 5.6.1268 exists. Personally I use 5.6.1218 and I have no problem compiling Gobo with it. Note that the error that you get looks like a...
1304
Peter Gummer
peter_gummer
Oct 1, 2005 1:21 am
... I don't think you need to do this, Gilles. Gobo 3.4 is already installed with EiffelStudio 5.6. All you need to do is add the relevant Gobo clusters to...
1305
Colin Paul Adams
colin@...
Oct 1, 2005 5:55 am
... Peter> The only tricky part of 3.4 is the XML stuff What's tricky about it? -- Colin Adams Preston Lancashire...
1306
Gilles Micas
gillesmicas
Oct 1, 2005 7:41 am
Thank you for the tip, Peter. It does not appear clearly from the gobo site that gobo should not be installed when ES56 is installed. ... Gilles Micas Knudsen ...
1307
Eric Bezault
gobosoft
Oct 1, 2005 8:10 am
... Gobo 3.4 has been released before ISE 5.6. So it should be up to ISE to indicate that they include Gobo 3.4. Also note that despite Gobo being included in...
1308
Peter Gummer
peter_gummer
Oct 1, 2005 9:47 am
... It added a reeeeaaaally long time to the compilation time of my precompiled library. That's a minor point. It also gave me an error message about a library...
1309
Colin Paul Adams
colin@...
Oct 1, 2005 9:58 am
... Peter> Colin Paul Adams wrote: The only tricky part of 3.4 is the Peter> XML stuff ... Peter> It added a reeeeaaaally long time to the compilation time ...
1310
Peter Gummer
peter_gummer
Oct 1, 2005 10:32 am
... I don't use .xace files. Now learning how to do _that_ would be tricky to me. I have no interest in learning how to use gexace, at this stage; simple Ace...
1311
Eric Bezault
gobosoft
Oct 1, 2005 10:35 am
... I think he just added the Gobo libraries in his Ace file using the 'all' keyword rather than using the [X]Ace files provided in Gobo. As a consequence the...
1312
Peter Gummer
peter_gummer
Oct 1, 2005 11:00 am
... Yep, Eric, that's exactly what happened. In EiffelStudio 5.5, with Gobo 3.3, my Ace file had this: library gobo: "$ISE_EIFFEL92;libraries92;gobo" exclude "se";...
1313
Gilles Micas
gillesmicas
Oct 1, 2005 3:22 pm
... It is strange anyhow that the C-compilation fails. Hitting F7 compiles correctly. But, the freezing phase and the finalization phase do not. gilles Gilles...
1314
Eric Bezault
gobosoft
Oct 1, 2005 3:42 pm
... But this has nothing to do with Gobo or with the fact that you have Gobo installed twice. As I already pointed out this C compilation error is due to a ...
1315
Gilles Micas Knudsen
gillesmicas
Oct 2, 2005 11:12 am
... -- That is the answer I expected. Thank you. -- So ISE has a problem with versions of C compiler used as backend. -- I namely re-installed ES56 with the...
1316
Shinji Takasaka
shintak01
Oct 4, 2005 9:18 am
Dear Paul, Thanks for your help. I've swapped the arguments as you said and I got a little bit further but now I stopped with this messaged: ...
1317
Paul G. Crismer
pgcrism
Oct 5, 2005 9:37 am
... come from the safe kernel. You need to rebuild the safe/kernel. cd %SAFE_KERNEL% geant clean geant install Then rebuild your application. Best regards, ...
1318
Shinji Takasaka
shintak01
Oct 6, 2005 9:20 am
Thanks again Paul, Following your instructions I successfully compiled ECLI and ran some tests and it worked. But when I try to compile the book example from...
1319
Eric Bezault
gobosoft
Oct 7, 2005 11:47 am
... It's because 'reference39; is now a keyword. You should try to give another name to the local variable. -- Eric Bezault mailto:ericb@... ...
1320
Shinji Takasaka
shintak01
Oct 13, 2005 9:27 am
Now I've changed all "reference" attribute name to "referemce_1". The next ... Error code: VUEX(2) Error: feature of qualified call is not available to client...
1321
Peter Gummer
peter_gummer
Oct 14, 2005 11:18 am
... Maybe the best thing would be to get the latest updates from the CVS repository at http://cvs.sourceforge.net/viewcvs.py/safe/. I know there are plenty of...
1322
Cheng-Chang Wu
chengchangwu
Oct 26, 2005 11:41 am
For my application the proccess must jump out from the parser and jump in later. I've written a feature 'suspend39; to save the local variables of feature ...
1323
Cheng-Chang Wu
chengchangwu
Oct 26, 2005 12:17 pm
Attached files are removed in last email? Here are they again. ... class CNC_PARSER_SKELETON inherit YY_NEW_PARSER_SKELETON redefine parse end feature --...
1324
Eric Bezault
gobosoft
Oct 27, 2005 6:52 am
... I'll give them a look this weekend. -- Eric Bezault mailto:ericb@... http://www.gobosoft.com...
1325
Marcio Marchini
sglebs
Oct 27, 2005 1:26 pm
This kind of functionality is very useful. I've had that need when parsing bytes coming in an event-driven fashion from a socket, via socket select in a loop. ...
1326
Cheng-Chang Wu
chengchangwu
Oct 27, 2005 4:32 pm
yes, I hope one day geyacc can support such a function so I don't need to maintain my own version;) ... __________________________________ Yahoo! Mail - PC...
1327
kkkkg999
Oct 28, 2005 5:07 pm
Here When I compile things like "[a-z]*", "[a-zA-Z]*", even simply match "indexing". 'has_matched39; seems always true. Then my loop never stop. Is it a bug or...
1328
Colin Paul Adams
colin@...
Oct 28, 2005 6:02 pm
... The string "indexing" DOES match either of those patterns. -- Colin Adams Preston Lancashire...
1329
Tao Feng
kkkkg999
Oct 29, 2005 2:18 am
"indexing" does match either of those patterns, but after that match, has_matched never be false, no matter how many times I call "next_match". Which means...
1330
Eric Bezault
gobosoft
Oct 29, 2005 3:06 am
... It's because the empty string is a valid match. You should either use "[a-z]+" instead of "[a-z]*" as regexp, or call: my_regexp.set_empty_allowed (False) ...
1331
Tao Feng
kkkkg999
Oct 29, 2005 4:48 am
Thanks Eric. That is the prime I need. Ted ... __________________________________ Start your day with Yahoo! - Make it your home page! ...
1332
Eric Bezault
gobosoft
Oct 29, 2005 6:50 am
... It looks good to me. ... I have put a slightly modified version of your code in YY_PARSER_SKELETON. It's in CVS now. Thank you for this contribution. -- ...