Loading Cog fails under Windows

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
14 messages Options
Reply | Threaded
Open this post in threaded view
|

Loading Cog fails under Windows

hernanmd
When I try to install Cog (GuillermoPolito.127) from the Configuration Browser in a clean Pharo 2.0 (Windows 7 x64), fails with the following message:

"The symbolic version #stable is not defined in ConfigurationOfCog for the current platform."

I download the image + vm with the following command:

$ wget -O- get.pharo.org/20+vm | bash

Any workaround?

Hernán

Reply | Threaded
Open this post in threaded view
|

Re: Loading Cog fails under Windows

Clément Béra
Hello.

Can you try to git clone this repo:
and then in the folder named 'image', there's a script named newImage.sh. Run it, it should get you an image named generator.image with Pharo 2 + Cog.

Anyway it's a bug ...



2013/12/6 Hernán Morales Durand <[hidden email]>
When I try to install Cog (GuillermoPolito.127) from the Configuration Browser in a clean Pharo 2.0 (Windows 7 x64), fails with the following message:

"The symbolic version #stable is not defined in ConfigurationOfCog for the current platform."

I download the image + vm with the following command:

$ wget -O- get.pharo.org/20+vm | bash

Any workaround?

Hernán


Reply | Threaded
Open this post in threaded view
|

Re: Loading Cog fails under Windows

hernanmd
Thanks Clement, got it.

FYI doing the checkout leads to a filename too long

$ git checkout -f HEAD
error: unable to create file mc/VMMaker-oscog.package/GeniePlugin.class/instance
/primSameClassAbsoluteStrokeDistanceMyPoints.otherPoints.myVectors.otherVectors.
mySquaredLengths.otherSquaredLengths.myAngles.otherAngles.maxSizeAndReferenceFla
g.rowBase.rowInsertRemove.rowInsertRemoveCount..st (Filename too long)
Checking out files: 100% (17530/17530), done.

another detail, I use MSYS shell and I don't have a .profile file in my home, so I just passed that point.

Hernán




2013/12/6 Clément Béra <[hidden email]>
Hello.

Can you try to git clone this repo:
and then in the folder named 'image', there's a script named newImage.sh. Run it, it should get you an image named generator.image with Pharo 2 + Cog.

Anyway it's a bug ...



2013/12/6 Hernán Morales Durand <[hidden email]>
When I try to install Cog (GuillermoPolito.127) from the Configuration Browser in a clean Pharo 2.0 (Windows 7 x64), fails with the following message:

"The symbolic version #stable is not defined in ConfigurationOfCog for the current platform."

I download the image + vm with the following command:

$ wget -O- get.pharo.org/20+vm | bash

Any workaround?

Hernán



Reply | Threaded
Open this post in threaded view
|

Re: Loading Cog fails under Windows

Clément Béra
Hello, answers inlined

2013/12/6 Hernán Morales Durand <[hidden email]>
Thanks Clement, got it.

FYI doing the checkout leads to a filename too long

$ git checkout -f HEAD
error: unable to create file mc/VMMaker-oscog.package/GeniePlugin.class/instance
/primSameClassAbsoluteStrokeDistanceMyPoints.otherPoints.myVectors.otherVectors.
mySquaredLengths.otherSquaredLengths.myAngles.otherAngles.maxSizeAndReferenceFla
g.rowBase.rowInsertRemove.rowInsertRemoveCount..st (Filename too long)
Checking out files: 100% (17530/17530), done.

another detail, I use MSYS shell and I don't have a .profile file in my home, so I just passed that point.

This bug is specific to windows. On this page: https://github.com/pharo-project/pharo-vm , if you look at the README.md there are information on how to build and get the sources of the VM. At the bottom, there is a paragraph entitled windows specific. Here are some extra informations for windows, among them, this bug you showed on the genie plugin. (the paragraph starts with "If you do this on Windows/Msys, you'll get a message about the GeniePlugin giving trouble" ).I guess this is what you need.
 
Hernán




2013/12/6 Clément Béra <[hidden email]>
Hello.

Can you try to git clone this repo:
and then in the folder named 'image', there's a script named newImage.sh. Run it, it should get you an image named generator.image with Pharo 2 + Cog.

Anyway it's a bug ...



2013/12/6 Hernán Morales Durand <[hidden email]>
When I try to install Cog (GuillermoPolito.127) from the Configuration Browser in a clean Pharo 2.0 (Windows 7 x64), fails with the following message:

"The symbolic version #stable is not defined in ConfigurationOfCog for the current platform."

I download the image + vm with the following command:

$ wget -O- get.pharo.org/20+vm | bash

Any workaround?

Hernán




Reply | Threaded
Open this post in threaded view
|

Re: Loading Cog fails under Windows

Marcus Denker-4

On 07 Dec 2013, at 09:32, Clément Bera <[hidden email]> wrote:

Hello, answers inlined

2013/12/6 Hernán Morales Durand <[hidden email]>
Thanks Clement, got it.

FYI doing the checkout leads to a filename too long

$ git checkout -f HEAD
error: unable to create file mc/VMMaker-oscog.package/GeniePlugin.class/instance
/primSameClassAbsoluteStrokeDistanceMyPoints.otherPoints.myVectors.otherVectors.
mySquaredLengths.otherSquaredLengths.myAngles.otherAngles.maxSizeAndReferenceFla
g.rowBase.rowInsertRemove.rowInsertRemoveCount..st (Filename too long)
Checking out files: 100% (17530/17530), done.

another detail, I use MSYS shell and I don't have a .profile file in my home, so I just passed that point.

This bug is specific to windows. On this page: https://github.com/pharo-project/pharo-vm , if you look at the README.md there are information on how to build and get the sources of the VM. At the bottom, there is a paragraph entitled windows specific. Here are some extra informations for windows, among them, this bug you showed on the genie plugin. (the paragraph starts with "If you do this on Windows/Msys, you'll get a message about the GeniePlugin giving trouble" ).I guess this is what you need.


Why is the GeniePlugin still part of the VM? Nobody uses it, it was experiment, discontinued years ago, they author works at google since 2005…

Someone I wonder if we want to maintain a museum or invent the future.

Marcus

Reply | Threaded
Open this post in threaded view
|

Re: Loading Cog fails under Windows

Clément Béra
I have no clue Marcus why it is still there. Probably removing it had some side effect in rare cases so it is still there or no one has ever tried to remove it.


2013/12/7 Marcus Denker <[hidden email]>

On 07 Dec 2013, at 09:32, Clément Bera <[hidden email]> wrote:

Hello, answers inlined

2013/12/6 Hernán Morales Durand <[hidden email]>
Thanks Clement, got it.

FYI doing the checkout leads to a filename too long

$ git checkout -f HEAD
error: unable to create file mc/VMMaker-oscog.package/GeniePlugin.class/instance
/primSameClassAbsoluteStrokeDistanceMyPoints.otherPoints.myVectors.otherVectors.
mySquaredLengths.otherSquaredLengths.myAngles.otherAngles.maxSizeAndReferenceFla
g.rowBase.rowInsertRemove.rowInsertRemoveCount..st (Filename too long)
Checking out files: 100% (17530/17530), done.

another detail, I use MSYS shell and I don't have a .profile file in my home, so I just passed that point.

This bug is specific to windows. On this page: https://github.com/pharo-project/pharo-vm , if you look at the README.md there are information on how to build and get the sources of the VM. At the bottom, there is a paragraph entitled windows specific. Here are some extra informations for windows, among them, this bug you showed on the genie plugin. (the paragraph starts with "If you do this on Windows/Msys, you'll get a message about the GeniePlugin giving trouble" ).I guess this is what you need.


Why is the GeniePlugin still part of the VM? Nobody uses it, it was experiment, discontinued years ago, they author works at google since 2005…

Someone I wonder if we want to maintain a museum or invent the future.

Marcus


Reply | Threaded
Open this post in threaded view
|

Re: Loading Cog fails under Windows

Stéphane Ducasse
In reply to this post by Marcus Denker-4

Hello, answers inlined

2013/12/6 Hernán Morales Durand <[hidden email]>
Thanks Clement, got it.

FYI doing the checkout leads to a filename too long

$ git checkout -f HEAD
error: unable to create file mc/VMMaker-oscog.package/GeniePlugin.class/instance
/primSameClassAbsoluteStrokeDistanceMyPoints.otherPoints.myVectors.otherVectors.
mySquaredLengths.otherSquaredLengths.myAngles.otherAngles.maxSizeAndReferenceFla
g.rowBase.rowInsertRemove.rowInsertRemoveCount..st (Filename too long)
Checking out files: 100% (17530/17530), done.

another detail, I use MSYS shell and I don't have a .profile file in my home, so I just passed that point.

This bug is specific to windows. On this page: https://github.com/pharo-project/pharo-vm , if you look at the README.md there are information on how to build and get the sources of the VM. At the bottom, there is a paragraph entitled windows specific. Here are some extra informations for windows, among them, this bug you showed on the genie plugin. (the paragraph starts with "If you do this on Windows/Msys, you'll get a message about the GeniePlugin giving trouble" ).I guess this is what you need.


Why is the GeniePlugin still part of the VM? Nobody uses it, it was experiment, discontinued years ago, they author works at google since 2005…

Someone I wonder if we want to maintain a museum or invent the future.

:)
not talk ing about Klatt :)


Marcus


Reply | Threaded
Open this post in threaded view
|

Re: Loading Cog fails under Windows

EstebanLM
just because I didn't had the time of removing them from builds :)
(sometimes is not so easy, as you know)

as soon as I have some time to work on the vm I will remove the "undesirable" plugins (while working on the ones that we actually need, like SoundPlugin :).

Esteban


On Sat, Dec 7, 2013 at 9:41 AM, Stéphane Ducasse <[hidden email]> wrote:

Hello, answers inlined

2013/12/6 Hernán Morales Durand <[hidden email]>
Thanks Clement, got it.

FYI doing the checkout leads to a filename too long

$ git checkout -f HEAD
error: unable to create file mc/VMMaker-oscog.package/GeniePlugin.class/instance
/primSameClassAbsoluteStrokeDistanceMyPoints.otherPoints.myVectors.otherVectors.
mySquaredLengths.otherSquaredLengths.myAngles.otherAngles.maxSizeAndReferenceFla
g.rowBase.rowInsertRemove.rowInsertRemoveCount..st (Filename too long)
Checking out files: 100% (17530/17530), done.

another detail, I use MSYS shell and I don't have a .profile file in my home, so I just passed that point.

This bug is specific to windows. On this page: https://github.com/pharo-project/pharo-vm , if you look at the README.md there are information on how to build and get the sources of the VM. At the bottom, there is a paragraph entitled windows specific. Here are some extra informations for windows, among them, this bug you showed on the genie plugin. (the paragraph starts with "If you do this on Windows/Msys, you'll get a message about the GeniePlugin giving trouble" ).I guess this is what you need.


Why is the GeniePlugin still part of the VM? Nobody uses it, it was experiment, discontinued years ago, they author works at google since 2005…

Someone I wonder if we want to maintain a museum or invent the future.

:)
not talk ing about Klatt :)


Marcus



Reply | Threaded
Open this post in threaded view
|

Re: Loading Cog fails under Windows

Stéphane Ducasse
I would like to be a fly on your shoulder when you work on that?

Stef

On Dec 7, 2013, at 9:53 AM, Esteban Lorenzano <[hidden email]> wrote:

just because I didn't had the time of removing them from builds :)
(sometimes is not so easy, as you know)

as soon as I have some time to work on the vm I will remove the "undesirable" plugins (while working on the ones that we actually need, like SoundPlugin :).

Esteban


On Sat, Dec 7, 2013 at 9:41 AM, Stéphane Ducasse <[hidden email]> wrote:

Hello, answers inlined

2013/12/6 Hernán Morales Durand <[hidden email]>
Thanks Clement, got it.

FYI doing the checkout leads to a filename too long

$ git checkout -f HEAD
error: unable to create file mc/VMMaker-oscog.package/GeniePlugin.class/instance
/primSameClassAbsoluteStrokeDistanceMyPoints.otherPoints.myVectors.otherVectors.
mySquaredLengths.otherSquaredLengths.myAngles.otherAngles.maxSizeAndReferenceFla
g.rowBase.rowInsertRemove.rowInsertRemoveCount..st (Filename too long)
Checking out files: 100% (17530/17530), done.

another detail, I use MSYS shell and I don't have a .profile file in my home, so I just passed that point.

This bug is specific to windows. On this page: https://github.com/pharo-project/pharo-vm , if you look at the README.md there are information on how to build and get the sources of the VM. At the bottom, there is a paragraph entitled windows specific. Here are some extra informations for windows, among them, this bug you showed on the genie plugin. (the paragraph starts with "If you do this on Windows/Msys, you'll get a message about the GeniePlugin giving trouble" ).I guess this is what you need.


Why is the GeniePlugin still part of the VM? Nobody uses it, it was experiment, discontinued years ago, they author works at google since 2005…

Someone I wonder if we want to maintain a museum or invent the future.

:)
not talk ing about Klatt :)


Marcus




Reply | Threaded
Open this post in threaded view
|

Re: Loading Cog fails under Windows

philippeback
Maybe can we do something about that on the 20th.

Note: there were3 pull requests https://github.com/pharo-project/pharo-vm/pulls?direction=desc&page=1&sort=created&state=open at the moment, I reviewed them and merged as they looked ok. (2 readme.md, one with Nicolai Windows fix).

Phil

On Sat, Dec 7, 2013 at 12:23 PM, Stéphane Ducasse <[hidden email]> wrote:
I would like to be a fly on your shoulder when you work on that?

Stef

On Dec 7, 2013, at 9:53 AM, Esteban Lorenzano <[hidden email]> wrote:

just because I didn't had the time of removing them from builds :)
(sometimes is not so easy, as you know)

as soon as I have some time to work on the vm I will remove the "undesirable" plugins (while working on the ones that we actually need, like SoundPlugin :).

Esteban


On Sat, Dec 7, 2013 at 9:41 AM, Stéphane Ducasse <[hidden email]> wrote:

Hello, answers inlined

2013/12/6 Hernán Morales Durand <[hidden email]>
Thanks Clement, got it.

FYI doing the checkout leads to a filename too long

$ git checkout -f HEAD
error: unable to create file mc/VMMaker-oscog.package/GeniePlugin.class/instance
/primSameClassAbsoluteStrokeDistanceMyPoints.otherPoints.myVectors.otherVectors.
mySquaredLengths.otherSquaredLengths.myAngles.otherAngles.maxSizeAndReferenceFla
g.rowBase.rowInsertRemove.rowInsertRemoveCount..st (Filename too long)
Checking out files: 100% (17530/17530), done.

another detail, I use MSYS shell and I don't have a .profile file in my home, so I just passed that point.

This bug is specific to windows. On this page: https://github.com/pharo-project/pharo-vm , if you look at the README.md there are information on how to build and get the sources of the VM. At the bottom, there is a paragraph entitled windows specific. Here are some extra informations for windows, among them, this bug you showed on the genie plugin. (the paragraph starts with "If you do this on Windows/Msys, you'll get a message about the GeniePlugin giving trouble" ).I guess this is what you need.


Why is the GeniePlugin still part of the VM? Nobody uses it, it was experiment, discontinued years ago, they author works at google since 2005…

Someone I wonder if we want to maintain a museum or invent the future.

:)
not talk ing about Klatt :)


Marcus





Reply | Threaded
Open this post in threaded view
|

Re: Loading Cog fails under Windows

Stéphane Ducasse
having a group of C (not afraid persons) cleaning the VM code and library would be really great.

stef

On Dec 7, 2013, at 2:01 PM, [hidden email] wrote:

Maybe can we do something about that on the 20th.

Note: there were3 pull requests https://github.com/pharo-project/pharo-vm/pulls?direction=desc&page=1&sort=created&state=open at the moment, I reviewed them and merged as they looked ok. (2 readme.md, one with Nicolai Windows fix).

Phil

On Sat, Dec 7, 2013 at 12:23 PM, Stéphane Ducasse <[hidden email]> wrote:
I would like to be a fly on your shoulder when you work on that?

Stef

On Dec 7, 2013, at 9:53 AM, Esteban Lorenzano <[hidden email]> wrote:

just because I didn't had the time of removing them from builds :)
(sometimes is not so easy, as you know)

as soon as I have some time to work on the vm I will remove the "undesirable" plugins (while working on the ones that we actually need, like SoundPlugin :).

Esteban


On Sat, Dec 7, 2013 at 9:41 AM, Stéphane Ducasse <[hidden email]> wrote:

Hello, answers inlined

2013/12/6 Hernán Morales Durand <[hidden email]>
Thanks Clement, got it.

FYI doing the checkout leads to a filename too long

$ git checkout -f HEAD
error: unable to create file mc/VMMaker-oscog.package/GeniePlugin.class/instance
/primSameClassAbsoluteStrokeDistanceMyPoints.otherPoints.myVectors.otherVectors.
mySquaredLengths.otherSquaredLengths.myAngles.otherAngles.maxSizeAndReferenceFla
g.rowBase.rowInsertRemove.rowInsertRemoveCount..st (Filename too long)
Checking out files: 100% (17530/17530), done.

another detail, I use MSYS shell and I don't have a .profile file in my home, so I just passed that point.

This bug is specific to windows. On this page: https://github.com/pharo-project/pharo-vm , if you look at the README.md there are information on how to build and get the sources of the VM. At the bottom, there is a paragraph entitled windows specific. Here are some extra informations for windows, among them, this bug you showed on the genie plugin. (the paragraph starts with "If you do this on Windows/Msys, you'll get a message about the GeniePlugin giving trouble" ).I guess this is what you need.


Why is the GeniePlugin still part of the VM? Nobody uses it, it was experiment, discontinued years ago, they author works at google since 2005…

Someone I wonder if we want to maintain a museum or invent the future.

:)
not talk ing about Klatt :)


Marcus






Reply | Threaded
Open this post in threaded view
|

Re: Loading Cog fails under Windows

philippeback
I have been looking at the code using Source Navigator NG and it is helpful. 

I am not afraid of C for sure. 

Who is in? 

On Saturday, December 7, 2013, Stéphane Ducasse wrote:
having a group of C (not afraid persons) cleaning the VM code and library would be really great.

stef

On Dec 7, 2013, at 2:01 PM, <a href="javascript:_e({}, &#39;cvml&#39;, &#39;phil@highoctane.be&#39;);" target="_blank">phil@... wrote:

Maybe can we do something about that on the 20th.

Note: there were3 pull requests https://github.com/pharo-project/pharo-vm/pulls?direction=desc&page=1&sort=created&state=open at the moment, I reviewed them and merged as they looked ok. (2 readme.md, one with Nicolai Windows fix).

Phil

On Sat, Dec 7, 2013 at 12:23 PM, Stéphane Ducasse <<a href="javascript:_e({}, &#39;cvml&#39;, &#39;stephane.ducasse@inria.fr&#39;);" target="_blank">stephane.ducasse@...> wrote:
I would like to be a fly on your shoulder when you work on that?

Stef

On Dec 7, 2013, at 9:53 AM, Esteban Lorenzano <<a href="javascript:_e({}, &#39;cvml&#39;, &#39;estebanlm@gmail.com&#39;);" target="_blank">estebanlm@...> wrote:

just because I didn't had the time of removing them from builds :)
(sometimes is not so easy, as you know)

as soon as I have some time to work on the vm I will remove the "undesirable" plugins (while working on the ones that we actually need, like SoundPlugin :).

Esteban


On Sat, Dec 7, 2013 at 9:41 AM, Stéphane Ducasse <<a href="javascript:_e({}, &#39;cvml&#39;, &#39;stephane.ducasse@inria.fr&#39;);" target="_blank">stephane.ducasse@...> wrote:

Hello, answers inlined

2013/12/6 Hernán Morales Durand <<a href="javascript:_e({}, &#39;cvml&#39;, &#39;hernan.morales@gmail.com&#39;);" target="_blank">hernan.morales@...>
Thanks Clement, got it.

FYI doing the checkout leads to a filename too long

$ git checkout -f HEAD
error: unable to create file mc/VMMaker-oscog.package/GeniePlugin.class/instance
/primSameClassAbsoluteStrokeDistanceMyPoints.otherPoints.myVectors.otherVectors.
mySquaredLengths.otherSquaredLengths.myAngles.otherAngles.maxSizeAndReferenceFla
g.rowBase.rowInsertRemove.rowInsertRemoveCount..st (Filename too long)
Checking out files: 100% (17530/17530), done.

another detail, I use MSYS shell and I don't have a .profile file in my home, so I just passed that point.

This bug is specific to windows. On this page: https://github.com/pharo-project/pharo-vm , if you look at the README.md there are information on how to build and get the sources of the VM. At the bottom, there is a paragraph entitled windows specific. Here are some extra informations for windows, among them, this bug you showed on the genie plugin. (the paragraph starts with "If you do this on Windows/Msys, you'll get a message about the GeniePlugin giving trouble" ).I guess this is what you need.


Why is the GeniePlugin still part of the VM? Nobody uses it, it was experiment, discontinued years ago, they author works at google since 2005…

Someone I wonder if we want to maintain a museum or invent the future.

:)
not talk ing about Klatt :)


Marcus








--
---
Philippe Back
Dramatic Performance Improvements
Mob: +32(0) 478 650 140 | Fax: +32 (0) 70 408 027
Blog: http://philippeback.be | Twitter: @philippeback

High Octane SPRL
rue cour Boisacq 101 | 1301 Bierges | Belgium

Pharo Consortium Member - http://consortium.pharo.org/
Featured on the Software Process and Measurement Cast - http://spamcast.libsyn.com
Sparx Systems Enterprise Architect and Ability Engineering EADocX Value Added Reseller
 


Reply | Threaded
Open this post in threaded view
|

Re: Loading Cog fails under Windows

Stéphane Ducasse

On Dec 7, 2013, at 3:50 PM, [hidden email] wrote:

I have been looking at the code using Source Navigator NG and it is helpful. 

I am not afraid of C for sure. 

Who is in? 

I'm not afraid but not fluent so this is worse :)


On Saturday, December 7, 2013, Stéphane Ducasse wrote:
having a group of C (not afraid persons) cleaning the VM code and library would be really great.

stef

On Dec 7, 2013, at 2:01 PM, <a href="javascript:_e({}, 'cvml', 'phil@highoctane.be');" target="_blank">phil@... wrote:

Maybe can we do something about that on the 20th.

Note: there were3 pull requests https://github.com/pharo-project/pharo-vm/pulls?direction=desc&page=1&sort=created&state=open at the moment, I reviewed them and merged as they looked ok. (2 readme.md, one with Nicolai Windows fix).

Phil

On Sat, Dec 7, 2013 at 12:23 PM, Stéphane Ducasse <<a href="javascript:_e({}, 'cvml', 'stephane.ducasse@inria.fr');" target="_blank">stephane.ducasse@...> wrote:
I would like to be a fly on your shoulder when you work on that?

Stef

On Dec 7, 2013, at 9:53 AM, Esteban Lorenzano <<a href="javascript:_e({}, 'cvml', 'estebanlm@gmail.com');" target="_blank">estebanlm@...> wrote:

just because I didn't had the time of removing them from builds :)
(sometimes is not so easy, as you know)

as soon as I have some time to work on the vm I will remove the "undesirable" plugins (while working on the ones that we actually need, like SoundPlugin :).

Esteban


On Sat, Dec 7, 2013 at 9:41 AM, Stéphane Ducasse <<a href="javascript:_e({}, 'cvml', 'stephane.ducasse@inria.fr');" target="_blank">stephane.ducasse@...> wrote:

Hello, answers inlined

2013/12/6 Hernán Morales Durand <<a href="javascript:_e({}, 'cvml', 'hernan.morales@gmail.com');" target="_blank">hernan.morales@...>
Thanks Clement, got it.

FYI doing the checkout leads to a filename too long

$ git checkout -f HEAD
error: unable to create file mc/VMMaker-oscog.package/GeniePlugin.class/instance
/primSameClassAbsoluteStrokeDistanceMyPoints.otherPoints.myVectors.otherVectors.
mySquaredLengths.otherSquaredLengths.myAngles.otherAngles.maxSizeAndReferenceFla
g.rowBase.rowInsertRemove.rowInsertRemoveCount..st (Filename too long)
Checking out files: 100% (17530/17530), done.

another detail, I use MSYS shell and I don't have a .profile file in my home, so I just passed that point.

This bug is specific to windows. On this page: https://github.com/pharo-project/pharo-vm , if you look at the README.md there are information on how to build and get the sources of the VM. At the bottom, there is a paragraph entitled windows specific. Here are some extra informations for windows, among them, this bug you showed on the genie plugin. (the paragraph starts with "If you do this on Windows/Msys, you'll get a message about the GeniePlugin giving trouble" ).I guess this is what you need.


Why is the GeniePlugin still part of the VM? Nobody uses it, it was experiment, discontinued years ago, they author works at google since 2005…

Someone I wonder if we want to maintain a museum or invent the future.

:)
not talk ing about Klatt :)


Marcus








--
---
Philippe Back
Dramatic Performance Improvements
Mob: +32(0) 478 650 140 | Fax: +32 (0) 70 408 027
Blog: http://philippeback.be | Twitter: @philippeback

High Octane SPRL
rue cour Boisacq 101 | 1301 Bierges | Belgium

Pharo Consortium Member - http://consortium.pharo.org/
Featured on the Software Process and Measurement Cast - http://spamcast.libsyn.com
Sparx Systems Enterprise Architect and Ability Engineering EADocX Value Added Reseller
 



Reply | Threaded
Open this post in threaded view
|

Re: Loading Cog fails under Windows

hernanmd
In reply to this post by Clément Béra
El 07/12/2013 5:31, Clément Bera escribió:

> Hello, answers inlined
>
> 2013/12/6 Hernán Morales Durand <[hidden email]
> <mailto:[hidden email]>>
>
>     Thanks Clement, got it.
>
>     FYI doing the checkout leads to a filename too long
>
>
>     $ git checkout -f HEAD
>     error: unable to create file
>     mc/VMMaker-oscog.package/GeniePlugin.class/instance
>     /primSameClassAbsoluteStrokeDistanceMyPoints.otherPoints.myVectors.otherVectors.
>     mySquaredLengths.otherSquaredLengths.myAngles.otherAngles.maxSizeAndReferenceFla
>     g.rowBase.rowInsertRemove.rowInsertRemoveCount..st (Filename too long)
>     Checking out files: 100% (17530/17530), done.
>
>     another detail, I use MSYS shell and I don't have a .profile file in
>     my home, so I just passed that point.
>
> This bug is specific to windows. On this page:
> https://github.com/pharo-project/pharo-vm , if you look at the README.md
> there are information on how to build and get the sources of the VM. At
> the bottom, there is a paragraph entitled windows specific. Here are
> some extra informations for windows, among them, this bug you showed on
> the genie plugin. (the paragraph starts with "/If you do this on
> Windows/Msys, you'll get a message about the GeniePlugin giving
> trouble"/ ).I guess this is what you need.


Thanks Clément. Yes, I followed that guide. Just wanted to inform where
the error was raising :)
Cheers,

Hernán