Re: [Pharo-project] optimizing primitiveFindFirstInString

2011-08-15 Thread Philippe Marschall
On 15.08.2011 00:21, Levente Uzonyi wrote: On Sun, 14 Aug 2011, Philippe Marschall wrote: On 14.08.2011 22:00, Levente Uzonyi wrote: On Sun, 14 Aug 2011, Philippe Marschall wrote: Hi In Seaside we get a lot of performance gains out of primitiveFindFirstInString. One thing that always

Re: [Pharo-project] [Vm-dev] building Cog on 64 bits debian

2011-08-15 Thread laurent laffont
Igor, I have 32bits version of needed libraries - they are installed by package libc6-dev-i386 in /usr/lib32 I've created CogDebian64Config and adjust linkFlags / commonCompilerFlags so I have: CogDebian64Config new linkFlags '-lSM -lICE -ldl -lGL -lpthread -lm -lnsl -lX11 -m32 -L/usr/lib32'

Re: [Pharo-project] [Vm-dev] building Cog on 64 bits debian

2011-08-15 Thread laurent laffont
note that: cat vm-display-null/CMakeFiles/vm-display-null.dir/link.txt gives /usr/bin/gcc -fPIC -shared -Wl,-soname,vm-display-null -o /root/securedvm/results/vm-display-null CMakeFiles/vm-display-null.dir/root/securedvm/platforms/unix/vm-display-null/sqUnixDisplayNull.c.o -lm -ldl -lpthread

Re: [Pharo-project] [Vm-dev] building Cog on 64 bits debian

2011-08-15 Thread Mariano Martinez Peck
On Mon, Aug 15, 2011 at 9:04 AM, laurent laffont laurent.laff...@gmail.comwrote: Igor, I have 32bits version of needed libraries - they are installed by package libc6-dev-i386 in /usr/lib32 I've created CogDebian64Config and adjust linkFlags / commonCompilerFlags so I have:

Re: [Pharo-project] [Vm-dev] building Cog on 64 bits debian

2011-08-15 Thread laurent laffont
If I edit vm-display-null/CMakeLists.txt and change: set_target_properties(vm-display-null PROPERTIES PREFIX SUFFIX ) to set(linkFlags ${linkFlags} -m32) set_target_properties(vm-display-null PROPERTIES LINK_FLAGS ${linkFlags} PREFIX SUFFIX ) then cmake. make it works, right flags used.

Re: [Pharo-project] [Vm-dev] building Cog on 64 bits debian

2011-08-15 Thread Igor Stasenko
On 15 August 2011 11:34, laurent laffont laurent.laff...@gmail.com wrote: If I edit vm-display-null/CMakeLists.txt and change: set_target_properties(vm-display-null PROPERTIES PREFIX SUFFIX ) to set(linkFlags ${linkFlags} -m32) set_target_properties(vm-display-null PROPERTIES LINK_FLAGS

Re: [Pharo-project] [Vm-dev] building Cog on 64 bits debian

2011-08-15 Thread laurent laffont
On Mon, Aug 15, 2011 at 10:37 AM, Igor Stasenko siguc...@gmail.com wrote: On 15 August 2011 11:34, laurent laffont laurent.laff...@gmail.com wrote: If I edit vm-display-null/CMakeLists.txt and change: set_target_properties(vm-display-null PROPERTIES PREFIX SUFFIX ) to set(linkFlags

[Pharo-project] [update 1.4] #14092

2011-08-15 Thread Marcus Denker
14091 - Issue 4633: Package Graphics-Resources is dirty -- Marcus Denker -- http://marcusdenker.de

[Pharo-project] [update 1.4] #14092

2011-08-15 Thread Marcus Denker
14092 - Issue 4639: Package System-SourceAndChangeFile is empty http://code.google.com/p/pharo/issues/detail?id=4639 Issue 4641: Small ImageSegments related cleanup http://code.google.com/p/pharo/issues/detail?id=4641 -- Marcus Denker -- http://marcusdenker.de

Re: [Pharo-project] [Vm-dev] building Cog on 64 bits debian

2011-08-15 Thread Igor Stasenko
this stuff requires a bit of refactoring. it is a bit messy, that #linkFlags contain libs rather than flags. the libs should be added separately On 15 August 2011 11:41, laurent laffont laurent.laff...@gmail.com wrote: On Mon, Aug 15, 2011 at 10:37 AM, Igor Stasenko siguc...@gmail.com wrote:

Re: [Pharo-project] [Vm-dev] building Cog on 64 bits debian

2011-08-15 Thread laurent laffont
Hi Igor, now it works well. I've created CogOnDebian64Config but I cannot commit to VMMaker repository. So you can get it on: Gofer it squeaksource: 'LaurentLSandbox'; version: 'CMakeVMMaker-LaurentLaffont.135'; load In CogOnDebian64Config comment: Used to build 32 bit Cog on Debian 64

[Pharo-project] [update 1.4] #14093

2011-08-15 Thread Marcus Denker
14093 - Issue 4645: use a bit more {} instead of Array with: http://code.google.com/p/pharo/issues/detail?id=4645 Issue 4644: subclass of ReadStreamTest to test RWBinaryOrTextStreamTest http://code.google.com/p/pharo/issues/detail?id=4644 Issue 4634:

Re: [Pharo-project] [Esug-list] Smalltalk lecture Saturday 20th of August at ESUG

2011-08-15 Thread HwaJongOh
can i watch this via internet? Best Regards HwaJogn Oh 2011. 8. 14., 저녁 5:13, Stéphane Ducasse 작성: Hi Friends please distribute that widely I will give a free lecture Discovering Smalltalk Smalltalk is a pure and elegant object language. This lectures will cover the fundamental

Re: [Pharo-project] optimizing primitiveFindFirstInString

2011-08-15 Thread Levente Uzonyi
On Mon, 15 Aug 2011, Philippe Marschall wrote: On 15.08.2011 00:21, Levente Uzonyi wrote: On Sun, 14 Aug 2011, Philippe Marschall wrote: On 14.08.2011 22:00, Levente Uzonyi wrote: On Sun, 14 Aug 2011, Philippe Marschall wrote: Hi In Seaside we get a lot of performance gains out of

Re: [Pharo-project] [Esug-list] Smalltalk lecture Saturday 20th of August at ESUG

2011-08-15 Thread Stéphane Ducasse
I do not think so. Nothing was prepared for that, now you can get the slides (some version on my lecture web pages). Stef On Aug 15, 2011, at 4:49 PM, HwaJongOh wrote: can i watch this via internet? Best Regards HwaJogn Oh 2011. 8. 14., 저녁 5:13, Stéphane Ducasse 작성: Hi Friends please

Re: [Pharo-project] optimizing primitiveFindFirstInString

2011-08-15 Thread Philippe Marschall
On 15.08.2011 18:07, Levente Uzonyi wrote: On Mon, 15 Aug 2011, Philippe Marschall wrote: On 15.08.2011 00:21, Levente Uzonyi wrote: On Sun, 14 Aug 2011, Philippe Marschall wrote: On 14.08.2011 22:00, Levente Uzonyi wrote: On Sun, 14 Aug 2011, Philippe Marschall wrote: Hi In Seaside we

[Pharo-project] If someone wants to know something about Fuel...

2011-08-15 Thread Mariano Martinez Peck
I'll be giving a talk in ESUG and presenting such project in the awards. So...I will be the whole week there. If someone wants to ask something or hack together with Fuel, please let me know. Cheers -- Mariano http://marianopeck.wordpress.com

Re: [Pharo-project] optimizing primitiveFindFirstInString

2011-08-15 Thread Mariano Martinez Peck
There are multiple ways to build VMs, but I guess you want to follow the way developed by Igor. That part is not at all clear to me. Where can I find documentation about this. Well, I tried to document as much as possible: http://code.google.com/p/cog/wiki/Guide -- Mariano

Re: [Pharo-project] optimizing primitiveFindFirstInString

2011-08-15 Thread Levente Uzonyi
On Mon, 15 Aug 2011, Philippe Marschall wrote: On 15.08.2011 18:07, Levente Uzonyi wrote: On Mon, 15 Aug 2011, Philippe Marschall wrote: On 15.08.2011 00:21, Levente Uzonyi wrote: On Sun, 14 Aug 2011, Philippe Marschall wrote: On 14.08.2011 22:00, Levente Uzonyi wrote: On Sun, 14 Aug

Re: [Pharo-project] latest filesystem is unloadable

2011-08-15 Thread Stéphane Ducasse
Why do you want to load the bleeding edge since 2.2.1 is fully tagged for reproduceability. I never used loadBleedingEdge and I did not garantee that it would work. Stef On Aug 15, 2011, at 11:31 PM, Tudor Girba wrote: Hi, The bleeding edge version of Filesystem is unloadable in Pharo

Re: [Pharo-project] If someone wants to know something about Fuel...

2011-08-15 Thread Javier Pimás
I do! On Mon, Aug 15, 2011 at 3:56 PM, Mariano Martinez Peck marianop...@gmail.com wrote: I'll be giving a talk in ESUG and presenting such project in the awards. So...I will be the whole week there. If someone wants to ask something or hack together with Fuel, please let me know. Cheers

Re: [Pharo-project] latest filesystem is unloadable

2011-08-15 Thread Tudor Girba
Hi, Continuous integration is there to test continuously. I was not complaining :). I just reported this issue, especially given that it is a critical one (not being able to load the code). The problem appeared today, because yesterday it worked fine. But, where is 2.2.1? I load the code from

Re: [Pharo-project] latest filesystem is unloadable

2011-08-15 Thread Camillo Bruni
The issue is the Version FS-Disk-cwp.2 which introduces most probably a rename and pushed down the Primitive var. Seems like whoever (cwp? I'd appreciate long names…) committed it forgot a piece ;) cami On 2011-08-15, at 23:31, Tudor Girba wrote: Hi, The bleeding edge version of

[Pharo-project] Surprise

2011-08-15 Thread Bernat Romagosa
♫ ♩ ♬ ♪ ... Squeaksource went down, down, down, and the flames went higher! ... ♫ ♩ ♬ ♪ -- Bernat Romagosa.