Hi, First, you may know that the source code of EiffelStudio was recently moved to the new origo platform (before it was hosted on the early prototype of ...
11341
colinlema
Oct 2, 2007 6:54 pm
I added a page to the EiffelSoftware Open Source wiki asking for comments on an idea. http://eiffelsoftware.origo.ethz.ch/Implicit_class The idea is to...
11342
cchris0256
Oct 3, 2007 2:26 pm
That's what I get in a DOS box when I launch ES6.0.6.9618 (GPL edition - Windows). Yet the directory pointed to, which is D:\YKNUHW92;Privé92;Eiffel60GPL92; , does...
11343
emack_hpti
Oct 3, 2007 6:00 pm
Does Eiffel have any built in timing functions? I don't need anything too fine grained. Something like C's clock() function would be good....
11344
emack_hpti
Oct 3, 2007 6:37 pm
I believe I may have found something that will work. The "time" library would probably meet my needs, but I can't get it to work. When I add the library to my...
11345
Emmanuel Stapf [ES]
manus_eiffel
Oct 3, 2007 6:43 pm
Are you compiling for .NET? Manu...
11346
Emmanuel Stapf [ES]
manus_eiffel
Oct 3, 2007 6:53 pm
... It is because of the trailing `\'. The message is in your case harmless but it means that the installation process via Windows Installer did not really ...
11347
emack_hpti
Oct 3, 2007 7:10 pm
I'm actually using the SCOOP parallel extension to Eiffel5.7. I'm attempting to time a SCOOP program....
11348
Emmanuel Stapf [ES]
manus_eiffel
Oct 3, 2007 8:28 pm
... I'm not sure about the modifications made by the SCOOP project in 5.7. Could you try the same with a project compiled with our official version as it ...
11349
cchris0256
Oct 4, 2007 9:51 am
... harmless but ... not really ... Indeed I could finalise a single project. Any clean way to get rid of the DOS window? Closing it closes ES. Granted, I can...
11350
mukyvelous2k5
Oct 7, 2007 3:54 pm
How do i write a command that works in the same way as the 'du' command. Thanks for the usual help M...
11351
Bernd Schoeller
berndschoeller
Oct 7, 2007 4:14 pm
On Sun, 07 Oct 2007 17:54:16 +0200, mukyvelous2k5 ... Hi M, please be more precise with your question: - What do you mean by "Command"? - Application? - Unix...
11352
Peter Horan
peter7723
Oct 9, 2007 1:57 pm
'wel_hook.dll' is not present, please copy it over from '%ISE_EIFFEL%\studio92;spe c\%ISE_PLATFORM%\bin39; to 'C:\Eiffel6192;studio92;spec92;windows92;bin\'. I get this...
11353
Emmanuel Stapf [ES]
manus_eiffel
Oct 9, 2007 4:33 pm
There is indeed a problem with it and this is already solved for the next intermediate release. For the time being, you can use `wel_hook.dll39; from any of the...
11354
Peter Horan
peter7723
Oct 10, 2007 12:45 am
... To clarify, wel_hook.dll is NOT missing from the directory. So, you are saying that replacing the existing wel_hook.dll with the old one is fine. Anyway, a...
11355
Emmanuel Stapf [ES]
manus_eiffel
Oct 10, 2007 1:00 am
... Yes, that was what I meant. Manu...
11356
ardjussi
Oct 10, 2007 10:10 am
A rare mention of DBC as opposed to religion driven development, by a C++ guru http://www.artima.com/weblogs/viewpost.jsp?thread=216434 Best regards Jussi...
11357
Peter Horan
peter7723
Oct 11, 2007 2:07 am
I eventually discovered the tricky little dropdown menu to select from previously existing targets. But, having created a new target, I do not know how to...
11358
Peter Gummer
peter_gummer
Oct 11, 2007 2:16 am
... Yes, it took me a while to notice the little dropdown arrow thingy too. But once I noticed it, I've never had any trouble selecting a new target after...
11359
Peter Horan
peter7723
Oct 11, 2007 2:37 am
... Yes, there is room for improvement. The problem was that the root class was not identified. I had to identify a root class in the "Target|General|Root"...
11360
Peter Gummer
peter_gummer
Oct 11, 2007 2:43 am
... Yes, I think everyone is enjoying this new facility :-) - Peter Gummer...
11361
Emmanuel Stapf [ES]
manus_eiffel
Oct 11, 2007 3:39 am
... In which case, it is considered as a non-compilable target and thus not proposed. Such a target can be used as a common parent for multiple targets. ... ...
11362
Peter Gummer
peter_gummer
Oct 11, 2007 5:06 am
Anyone who hasn't tried "Force Debug Mode" under EiffelStudio 6.0's Debug menu should give it a go the next time you are in a rapid code-compile-debug cycle....
11363
Peter Horan
peter7723
Oct 12, 2007 12:52 am
... When I understood, I did make use of that. ... But, it is obscure. I worked it out by examining the ecf file. I had in fact edited the ecf file fixing the...
11364
Peter Horan
peter7723
Oct 12, 2007 12:55 am
How do I use a common parent in conjunction with a child target, in which I want to nominate a parent cluster and give it a <file_rule> for that target? For...
11365
Emmanuel Stapf [ES]
manus_eiffel
Oct 12, 2007 5:03 am
... When you are using another configuration file as a library, the compiler needs to know which target to choose. If you have only one, this is the one, if...
11366
Jocelyn Fiat [ES]
jfiat@...
Oct 16, 2007 10:10 am
Hi Peter, I haven't seen this message until now. On my system, this seems to work fine, I mean the "(un)force debug mode" is enable, either in the menu, or in...
11367
Peter Horan
peter7723
Oct 17, 2007 1:10 am
I did not see a response to this question. ... -- Peter Horan School of Engineering and Information Technology peter@... Deakin...
11368
Emmanuel Stapf [ES]
manus_eiffel
Oct 17, 2007 3:46 am
The easiest would be to define in basics some file_rule based on a condition depending on a variable. Then in target_1 and target_2 you give a different value...
11369
roederja
roederja@...
Oct 17, 2007 9:32 pm
Hello, I have a really weird issue with the POINTER class: local p: POINTER do create p p.set_item (p.memory_allocate(4)) end When I run this code in ES...