Vm on iOS with Xcode 4.3

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

Re: Vm on iOS with Xcode 4.3

philippeback
Looks like OSX 10.7 needs a bit of sudo port install automake to have the right version for FT2 plugin.

Let's see.

Phil

2012/4/10 Esteban Lorenzano <[hidden email]>
on ./build

execute: 

../codegen-scripts/extract-commit-info.sh 

then... you are going to have errors (23, if everything is like my installation)... and you are going to be in the same stage as me (I still didn't fixed that, is an cmakemaker issue)

On Apr 10, 2012, at 2:58 PM, [hidden email] wrote:

Ok, it generates sources.

I used the cmake you told me:

So, on Lion, some frameworks are not found. I guess that I'll have to update that by hand.

Philippe

2012/4/10 Esteban Lorenzano <[hidden email]>
sorry, my fault... there is no stable version on cog

try:

(ConfigurationOfCog project version: '4.4') load.


On Apr 10, 2012, at 2:11 PM, [hidden email] wrote:

Sorry, fails on #stable load.

Did you meant #release ?

Phil


2012/4/10 Esteban Lorenzano <[hidden email]>
that's a pretty old version of CMakeMaker... you should:

1) download latest pharo 1.4 (and place it in ./image)
2) install ConfigurationOfCog

Gofer it 
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfCog';
load.

3) execute

(ConfigurationOfCog project version: #stable) load.

4) then execute: 

CogCocoaIOSConfig new 
"generateForDebug;"
addExternalPlugins: #(FT2Plugin);
generateSources; generate.

that's the correct way of doing

best,
Esteban

On Apr 10, 2012, at 1:51 PM, [hidden email] wrote:

The CocoaIOSJitConfig>>prepareForGeneration

"force using LF on Macs"
CrLfFileStream defaultToLF.

^ self prepareForCogGeneration

fails on CrLfFileStream defaultToLF.

The only implementer was  MultiByteFileStream defaultToLF.

The CrLfFileStream occurs in quite a *Config places.

Phil

2012/4/10 Mariano Martinez Peck <[hidden email]>


On Tue, Apr 10, 2012 at 12:16 AM, [hidden email] <[hidden email]> wrote:
I do have the cloned repos now.

For ConfigurationOfCog where can I pick this one up ? In the supplied image I guess. Right?

... moving (slowly) forward.

Thanks!

2012/4/6 [hidden email] <[hidden email]>

Oh great news!
Tomorrow will be Pharo iOS day.

Le 6 avr. 2012 17:54, "Esteban Lorenzano" <[hidden email]> a écrit :
Hi,

On Apr 6, 2012, at 10:51 AM, [hidden email] wrote:

I am still unable to get this to work.

latest nightly build from cmake is able to build valid xcode projects again [1].
Some adjusts are needed to actually build, but it is almost there (I will take care about that this days)

Also I see a jenkins build for OSX but not for iOS.

Yeah, and I want to have one, but it will take time (and time is tyrant, you know). 

XCode 4.3 will open old xcode projects so posting a full set of files that work out of cmake (ie a fully made build/ folder) would help a lot.

Would you be able to ship me such a set of files?

you already have them: clone of my repository [2] or blessed [3] and install latest ConfigurationOfCog

best,
Esteban







--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges




--
Mariano
http://marianopeck.wordpress.com




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges





--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges

<PharoScreenshot.3.png>




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges

<2012-04-10_14-56-49-cmake.png>




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: +32(0) 478 650 140 | Fax: +32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges

Reply | Threaded
Open this post in threaded view
|

Re: Vm on iOS with Xcode 4.3

EstebanLM
yeah... but you don't need FT2 for iOS... that instructions were for plain cog vm.

Run this instead: 

StackIPhoneConfig new 
"generateForDebug;"
generateSources; generate.

btw... you will need to remove CMakeCache.txt before running cmake again. 

On Apr 10, 2012, at 6:09 PM, [hidden email] wrote:

Looks like OSX 10.7 needs a bit of sudo port install automake to have the right version for FT2 plugin.

Let's see.

Phil

2012/4/10 Esteban Lorenzano <[hidden email]>
on ./build

execute: 

../codegen-scripts/extract-commit-info.sh 

then... you are going to have errors (23, if everything is like my installation)... and you are going to be in the same stage as me (I still didn't fixed that, is an cmakemaker issue)

On Apr 10, 2012, at 2:58 PM, [hidden email] wrote:

Ok, it generates sources.

I used the cmake you told me:

So, on Lion, some frameworks are not found. I guess that I'll have to update that by hand.

Philippe

2012/4/10 Esteban Lorenzano <[hidden email]>
sorry, my fault... there is no stable version on cog

try:

(ConfigurationOfCog project version: '4.4') load.


On Apr 10, 2012, at 2:11 PM, [hidden email] wrote:

Sorry, fails on #stable load.

Did you meant #release ?

Phil


2012/4/10 Esteban Lorenzano <[hidden email]>
that's a pretty old version of CMakeMaker... you should:

1) download latest pharo 1.4 (and place it in ./image)
2) install ConfigurationOfCog

Gofer it 
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfCog';
load.

3) execute

(ConfigurationOfCog project version: #stable) load.

4) then execute: 

CogCocoaIOSConfig new 
"generateForDebug;"
addExternalPlugins: #(FT2Plugin);
generateSources; generate.

that's the correct way of doing

best,
Esteban

On Apr 10, 2012, at 1:51 PM, [hidden email] wrote:

The CocoaIOSJitConfig>>prepareForGeneration

"force using LF on Macs"
CrLfFileStream defaultToLF.

^ self prepareForCogGeneration

fails on CrLfFileStream defaultToLF.

The only implementer was  MultiByteFileStream defaultToLF.

The CrLfFileStream occurs in quite a *Config places.

Phil

2012/4/10 Mariano Martinez Peck <[hidden email]>


On Tue, Apr 10, 2012 at 12:16 AM, [hidden email] <[hidden email]> wrote:
I do have the cloned repos now.

For ConfigurationOfCog where can I pick this one up ? In the supplied image I guess. Right?

... moving (slowly) forward.

Thanks!

2012/4/6 [hidden email] <[hidden email]>

Oh great news!
Tomorrow will be Pharo iOS day.

Le 6 avr. 2012 17:54, "Esteban Lorenzano" <[hidden email]> a écrit :
Hi,

On Apr 6, 2012, at 10:51 AM, [hidden email] wrote:

I am still unable to get this to work.

latest nightly build from cmake is able to build valid xcode projects again [1].
Some adjusts are needed to actually build, but it is almost there (I will take care about that this days)

Also I see a jenkins build for OSX but not for iOS.

Yeah, and I want to have one, but it will take time (and time is tyrant, you know). 

XCode 4.3 will open old xcode projects so posting a full set of files that work out of cmake (ie a fully made build/ folder) would help a lot.

Would you be able to ship me such a set of files?

you already have them: clone of my repository [2] or blessed [3] and install latest ConfigurationOfCog

best,
Esteban







--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges




--
Mariano
http://marianopeck.wordpress.com




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges





--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges

<PharoScreenshot.3.png>




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges

<2012-04-10_14-56-49-cmake.png>




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: +32(0) 478 650 140 | Fax: +32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges


Reply | Threaded
Open this post in threaded view
|

Re: Vm on iOS with Xcode 4.3

philippeback
Thanks.

We are getting closer. Over for today, I'll restert tomorrow.

Phil

2012/4/10 Esteban Lorenzano <[hidden email]>
yeah... but you don't need FT2 for iOS... that instructions were for plain cog vm.

Run this instead: 

StackIPhoneConfig new 
"generateForDebug;"
generateSources; generate.

btw... you will need to remove CMakeCache.txt before running cmake again. 

On Apr 10, 2012, at 6:09 PM, [hidden email] wrote:

Looks like OSX 10.7 needs a bit of sudo port install automake to have the right version for FT2 plugin.

Let's see.

Phil

2012/4/10 Esteban Lorenzano <[hidden email]>
on ./build

execute: 

../codegen-scripts/extract-commit-info.sh 

then... you are going to have errors (23, if everything is like my installation)... and you are going to be in the same stage as me (I still didn't fixed that, is an cmakemaker issue)

On Apr 10, 2012, at 2:58 PM, [hidden email] wrote:

Ok, it generates sources.

I used the cmake you told me:

So, on Lion, some frameworks are not found. I guess that I'll have to update that by hand.

Philippe

2012/4/10 Esteban Lorenzano <[hidden email]>
sorry, my fault... there is no stable version on cog

try:

(ConfigurationOfCog project version: '4.4') load.


On Apr 10, 2012, at 2:11 PM, [hidden email] wrote:

Sorry, fails on #stable load.

Did you meant #release ?

Phil


2012/4/10 Esteban Lorenzano <[hidden email]>
that's a pretty old version of CMakeMaker... you should:

1) download latest pharo 1.4 (and place it in ./image)
2) install ConfigurationOfCog

Gofer it 
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfCog';
load.

3) execute

(ConfigurationOfCog project version: #stable) load.

4) then execute: 

CogCocoaIOSConfig new 
"generateForDebug;"
addExternalPlugins: #(FT2Plugin);
generateSources; generate.

that's the correct way of doing

best,
Esteban

On Apr 10, 2012, at 1:51 PM, [hidden email] wrote:

The CocoaIOSJitConfig>>prepareForGeneration

"force using LF on Macs"
CrLfFileStream defaultToLF.

^ self prepareForCogGeneration

fails on CrLfFileStream defaultToLF.

The only implementer was  MultiByteFileStream defaultToLF.

The CrLfFileStream occurs in quite a *Config places.

Phil

2012/4/10 Mariano Martinez Peck <[hidden email]>


On Tue, Apr 10, 2012 at 12:16 AM, [hidden email] <[hidden email]> wrote:
I do have the cloned repos now.

For ConfigurationOfCog where can I pick this one up ? In the supplied image I guess. Right?

... moving (slowly) forward.

Thanks!

2012/4/6 [hidden email] <[hidden email]>

Oh great news!
Tomorrow will be Pharo iOS day.

Le 6 avr. 2012 17:54, "Esteban Lorenzano" <[hidden email]> a écrit :
Hi,

On Apr 6, 2012, at 10:51 AM, [hidden email] wrote:

I am still unable to get this to work.

latest nightly build from cmake is able to build valid xcode projects again [1].
Some adjusts are needed to actually build, but it is almost there (I will take care about that this days)

Also I see a jenkins build for OSX but not for iOS.

Yeah, and I want to have one, but it will take time (and time is tyrant, you know). 

XCode 4.3 will open old xcode projects so posting a full set of files that work out of cmake (ie a fully made build/ folder) would help a lot.

Would you be able to ship me such a set of files?

you already have them: clone of my repository [2] or blessed [3] and install latest ConfigurationOfCog

best,
Esteban







--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges




--
Mariano
http://marianopeck.wordpress.com




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges





--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges

<PharoScreenshot.3.png>




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges

<2012-04-10_14-56-49-cmake.png>




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges





--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: +32(0) 478 650 140 | Fax: +32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges

Reply | Threaded
Open this post in threaded view
|

Re: Vm on iOS with Xcode 4.3

Stéphane Ducasse
In reply to this post by EstebanLM
we should update the blog of mariano.

Stef

On Apr 10, 2012, at 2:00 PM, Esteban Lorenzano wrote:

> that's a pretty old version of CMakeMaker... you should:
>
> 1) download latest pharo 1.4 (and place it in ./image)
> 2) install ConfigurationOfCog
>
> Gofer it
> squeaksource: 'MetacelloRepository';
> package: 'ConfigurationOfCog';
> load.
>
> 3) execute
>
> (ConfigurationOfCog project version: #stable) load.
>
> 4) then execute:
>
> CogCocoaIOSConfig new
> "generateForDebug;"
> addExternalPlugins: #(FT2Plugin);
> generateSources; generate.
>
> that's the correct way of doing
>
> best,
> Esteban
>
> On Apr 10, 2012, at 1:51 PM, [hidden email] wrote:
>
>> The CocoaIOSJitConfig>>prepareForGeneration
>>
>> "force using LF on Macs"
>> CrLfFileStream defaultToLF.
>>
>> ^ self prepareForCogGeneration
>>
>> fails on CrLfFileStream defaultToLF.
>>
>> The only implementer was MultiByteFileStream defaultToLF.
>>
>> The CrLfFileStream occurs in quite a *Config places.
>>
>> Phil
>>
>> 2012/4/10 Mariano Martinez Peck <[hidden email]>
>>
>>
>> On Tue, Apr 10, 2012 at 12:16 AM, [hidden email] <[hidden email]> wrote:
>> I do have the cloned repos now.
>>
>> For ConfigurationOfCog where can I pick this one up ? In the supplied image I guess. Right?
>>
>>
>> Hi Philip. Just by change did you read my blog posts about building the VM? they may be of help:
>> http://marianopeck.wordpress.com/2011/04/10/building-the-vm-from-scratch-using-git-and-cmakevmmaker/
>> http://marianopeck.wordpress.com/2011/04/16/building-the-vm-second-part/
>>
>> Cheers
>>  
>> ... moving (slowly) forward.
>>
>> Thanks!
>>
>> 2012/4/6 [hidden email] <[hidden email]>
>>
>> Oh great news!
>> Tomorrow will be Pharo iOS day.
>> Le 6 avr. 2012 17:54, "Esteban Lorenzano" <[hidden email]> a écrit :
>> Hi,
>>
>> On Apr 6, 2012, at 10:51 AM, [hidden email] wrote:
>>
>>> I am still unable to get this to work.
>> latest nightly build from cmake is able to build valid xcode projects again [1].
>> Some adjusts are needed to actually build, but it is almost there (I will take care about that this days)
>>> Also I see a jenkins build for OSX but not for iOS.
>>>
>> Yeah, and I want to have one, but it will take time (and time is tyrant, you know).
>>
>>> XCode 4.3 will open old xcode projects so posting a full set of files that work out of cmake (ie a fully made build/ folder) would help a lot.
>>>
>>> Would you be able to ship me such a set of files?
>>>
>> you already have them: clone of my repository [2] or blessed [3] and install latest ConfigurationOfCog
>>
>> best,
>> Esteban
>>
>> [1] http://www.cmake.org/files/dev/cmake-2.8.7.20120405-gd2c9c-Darwin64-universal.dmg
>> [2] https://gitorious.org/~estebanlm/cogvm/cog-osx
>> [3] https://gitorious.org/cogvm/blessed
>>
>>
>>
>>
>>
>>
>> --
>> Philippe Back
>> "Helping you hit the top 3 outcomes you really want to achieve"
>>
>> Mob: +32(0) 478 650 140 | Fax: +32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:
>> http://philippeback.be
>>
>> High Octane SPRL
>> rue cour Boisacq 101
>> 1301 Bierges
>>
>>
>>
>>
>> --
>> Mariano
>> http://marianopeck.wordpress.com
>>
>>
>>
>>
>> --
>> Philippe Back
>> "Helping you hit the top 3 outcomes you really want to achieve"
>>
>> Mob: +32(0) 478 650 140 | Fax: +32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:
>> http://philippeback.be
>>
>> High Octane SPRL
>> rue cour Boisacq 101
>> 1301 Bierges
>>
>


Reply | Threaded
Open this post in threaded view
|

Re: Vm on iOS with Xcode 4.3

philippeback
I'll write a post on this anyway.

2012/4/10 Stéphane Ducasse <[hidden email]>
we should update the blog of mariano.

Stef

On Apr 10, 2012, at 2:00 PM, Esteban Lorenzano wrote:

> that's a pretty old version of CMakeMaker... you should:
>
> 1) download latest pharo 1.4 (and place it in ./image)
> 2) install ConfigurationOfCog
>
> Gofer it
>       squeaksource: 'MetacelloRepository';
>       package: 'ConfigurationOfCog';
>       load.
>
> 3) execute
>
> (ConfigurationOfCog project version: #stable) load.
>
> 4) then execute:
>
> CogCocoaIOSConfig new
>       "generateForDebug;"
>       addExternalPlugins: #(FT2Plugin);
>       generateSources; generate.
>
> that's the correct way of doing
>
> best,
> Esteban
>
> On Apr 10, 2012, at 1:51 PM, [hidden email] wrote:
>
>> The CocoaIOSJitConfig>>prepareForGeneration
>>
>>      "force using LF on Macs"
>>      CrLfFileStream defaultToLF.
>>
>>      ^ self prepareForCogGeneration
>>
>> fails on CrLfFileStream defaultToLF.
>>
>> The only implementer was     MultiByteFileStream defaultToLF.
>>
>> The CrLfFileStream occurs in quite a *Config places.
>>
>> Phil
>>
>> 2012/4/10 Mariano Martinez Peck <[hidden email]>
>>
>>
>> On Tue, Apr 10, 2012 at 12:16 AM, [hidden email] <[hidden email]> wrote:
>> I do have the cloned repos now.
>>
>> For ConfigurationOfCog where can I pick this one up ? In the supplied image I guess. Right?
>>
>>
>> Hi Philip. Just by change did you read my blog posts about building the VM? they may be of help:
>> http://marianopeck.wordpress.com/2011/04/10/building-the-vm-from-scratch-using-git-and-cmakevmmaker/
>> http://marianopeck.wordpress.com/2011/04/16/building-the-vm-second-part/
>>
>> Cheers
>>
>> ... moving (slowly) forward.
>>
>> Thanks!
>>
>> 2012/4/6 [hidden email] <[hidden email]>
>>
>> Oh great news!
>> Tomorrow will be Pharo iOS day.
>> Le 6 avr. 2012 17:54, "Esteban Lorenzano" <[hidden email]> a écrit :
>> Hi,
>>
>> On Apr 6, 2012, at 10:51 AM, [hidden email] wrote:
>>
>>> I am still unable to get this to work.
>> latest nightly build from cmake is able to build valid xcode projects again [1].
>> Some adjusts are needed to actually build, but it is almost there (I will take care about that this days)
>>> Also I see a jenkins build for OSX but not for iOS.
>>>
>> Yeah, and I want to have one, but it will take time (and time is tyrant, you know).
>>
>>> XCode 4.3 will open old xcode projects so posting a full set of files that work out of cmake (ie a fully made build/ folder) would help a lot.
>>>
>>> Would you be able to ship me such a set of files?
>>>
>> you already have them: clone of my repository [2] or blessed [3] and install latest ConfigurationOfCog
>>
>> best,
>> Esteban
>>
>> [1] http://www.cmake.org/files/dev/cmake-2.8.7.20120405-gd2c9c-Darwin64-universal.dmg
>> [2] https://gitorious.org/~estebanlm/cogvm/cog-osx
>> [3] https://gitorious.org/cogvm/blessed
>>
>>
>>
>>
>>
>>
>> --
>> Philippe Back
>> "Helping you hit the top 3 outcomes you really want to achieve"
>>
>> Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:
>> http://philippeback.be
>>
>> High Octane SPRL
>> rue cour Boisacq 101
>> 1301 Bierges
>>
>>
>>
>>
>> --
>> Mariano
>> http://marianopeck.wordpress.com
>>
>>
>>
>>
>> --
>> Philippe Back
>> "Helping you hit the top 3 outcomes you really want to achieve"
>>
>> Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:
>> http://philippeback.be
>>
>> High Octane SPRL
>> rue cour Boisacq 101
>> 1301 Bierges
>>
>





--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: +32(0) 478 650 140 | Fax: +32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges

Reply | Threaded
Open this post in threaded view
|

Re: Vm on iOS with Xcode 4.3

philippeback
In reply to this post by EstebanLM
Fail: Key #IOSPlugin not found.

I have removed the build/ folder before generating anything.

See screenshot.

Phil


2012/4/10 Esteban Lorenzano <[hidden email]>
yeah... but you don't need FT2 for iOS... that instructions were for plain cog vm.

Run this instead: 

StackIPhoneConfig new 
"generateForDebug;"
generateSources; generate.

btw... you will need to remove CMakeCache.txt before running cmake again. 

On Apr 10, 2012, at 6:09 PM, [hidden email] wrote:

Looks like OSX 10.7 needs a bit of sudo port install automake to have the right version for FT2 plugin.

Let's see.

Phil

2012/4/10 Esteban Lorenzano <[hidden email]>
on ./build

execute: 

../codegen-scripts/extract-commit-info.sh 

then... you are going to have errors (23, if everything is like my installation)... and you are going to be in the same stage as me (I still didn't fixed that, is an cmakemaker issue)

On Apr 10, 2012, at 2:58 PM, [hidden email] wrote:

Ok, it generates sources.

I used the cmake you told me:

So, on Lion, some frameworks are not found. I guess that I'll have to update that by hand.

Philippe

2012/4/10 Esteban Lorenzano <[hidden email]>
sorry, my fault... there is no stable version on cog

try:

(ConfigurationOfCog project version: '4.4') load.


On Apr 10, 2012, at 2:11 PM, [hidden email] wrote:

Sorry, fails on #stable load.

Did you meant #release ?

Phil


2012/4/10 Esteban Lorenzano <[hidden email]>
that's a pretty old version of CMakeMaker... you should:

1) download latest pharo 1.4 (and place it in ./image)
2) install ConfigurationOfCog

Gofer it 
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfCog';
load.

3) execute

(ConfigurationOfCog project version: #stable) load.

4) then execute: 

CogCocoaIOSConfig new 
"generateForDebug;"
addExternalPlugins: #(FT2Plugin);
generateSources; generate.

that's the correct way of doing

best,
Esteban

On Apr 10, 2012, at 1:51 PM, [hidden email] wrote:

The CocoaIOSJitConfig>>prepareForGeneration

"force using LF on Macs"
CrLfFileStream defaultToLF.

^ self prepareForCogGeneration

fails on CrLfFileStream defaultToLF.

The only implementer was  MultiByteFileStream defaultToLF.

The CrLfFileStream occurs in quite a *Config places.

Phil

2012/4/10 Mariano Martinez Peck <[hidden email]>


On Tue, Apr 10, 2012 at 12:16 AM, [hidden email] <[hidden email]> wrote:
I do have the cloned repos now.

For ConfigurationOfCog where can I pick this one up ? In the supplied image I guess. Right?

... moving (slowly) forward.

Thanks!

2012/4/6 [hidden email] <[hidden email]>

Oh great news!
Tomorrow will be Pharo iOS day.

Le 6 avr. 2012 17:54, "Esteban Lorenzano" <[hidden email]> a écrit :
Hi,

On Apr 6, 2012, at 10:51 AM, [hidden email] wrote:

I am still unable to get this to work.

latest nightly build from cmake is able to build valid xcode projects again [1].
Some adjusts are needed to actually build, but it is almost there (I will take care about that this days)

Also I see a jenkins build for OSX but not for iOS.

Yeah, and I want to have one, but it will take time (and time is tyrant, you know). 

XCode 4.3 will open old xcode projects so posting a full set of files that work out of cmake (ie a fully made build/ folder) would help a lot.

Would you be able to ship me such a set of files?

you already have them: clone of my repository [2] or blessed [3] and install latest ConfigurationOfCog

best,
Esteban







--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges




--
Mariano
http://marianopeck.wordpress.com




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges





--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges

<PharoScreenshot.3.png>




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges

<2012-04-10_14-56-49-cmake.png>




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges





--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: +32(0) 478 650 140 | Fax: +32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges


PharoScreenshot.4.png (134K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: Vm on iOS with Xcode 4.3

philippeback
I investigated for the plugin and found this as the only reference:

StackIPhoneConfig>>defaultInternalPlugins
^ #(
ADPCMCodecPlugin
BMPReadWriterPlugin 
BalloonEnginePlugin 
BitBltSimulation 
DSAPlugin 
DeflatePlugin 
"DropPlugin"
LocalePlugin 
FFTPlugin 
FilePlugin 
FloatArrayPlugin 
HostWindowPlugin 
JPEGReadWriter2Plugin 
JPEGReaderPlugin 
LargeIntegersPlugin 
Matrix2x3Plugin 
MiscPrimitivePlugin 
"RePlugin" 
SecurityPlugin 
"SocketPlugin"
SoundCodecPlugin 
SoundGenerationPlugin 
SoundPlugin
SurfacePlugin
UUIDPlugin
ObjectiveCPlugin 
#IOSPlugin)

IOSPlugin is in there with a # symbol.

And you told me to 

addExternalPlugins: #(iOSPlugin).

I am lost here, especially since it doesn't work. (Key Not Found)


Help!

Phil



2012/4/10 [hidden email] <[hidden email]>
Fail: Key #IOSPlugin not found.

I have removed the build/ folder before generating anything.

See screenshot.

Phil


2012/4/10 Esteban Lorenzano <[hidden email]>
yeah... but you don't need FT2 for iOS... that instructions were for plain cog vm.

Run this instead: 

StackIPhoneConfig new 
"generateForDebug;"
generateSources; generate.

btw... you will need to remove CMakeCache.txt before running cmake again. 

On Apr 10, 2012, at 6:09 PM, [hidden email] wrote:

Looks like OSX 10.7 needs a bit of sudo port install automake to have the right version for FT2 plugin.

Let's see.

Phil

2012/4/10 Esteban Lorenzano <[hidden email]>
on ./build

execute: 

../codegen-scripts/extract-commit-info.sh 

then... you are going to have errors (23, if everything is like my installation)... and you are going to be in the same stage as me (I still didn't fixed that, is an cmakemaker issue)

On Apr 10, 2012, at 2:58 PM, [hidden email] wrote:

Ok, it generates sources.

I used the cmake you told me:

So, on Lion, some frameworks are not found. I guess that I'll have to update that by hand.

Philippe

2012/4/10 Esteban Lorenzano <[hidden email]>
sorry, my fault... there is no stable version on cog

try:

(ConfigurationOfCog project version: '4.4') load.


On Apr 10, 2012, at 2:11 PM, [hidden email] wrote:

Sorry, fails on #stable load.

Did you meant #release ?

Phil


2012/4/10 Esteban Lorenzano <[hidden email]>
that's a pretty old version of CMakeMaker... you should:

1) download latest pharo 1.4 (and place it in ./image)
2) install ConfigurationOfCog

Gofer it 
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfCog';
load.

3) execute

(ConfigurationOfCog project version: #stable) load.

4) then execute: 

CogCocoaIOSConfig new 
"generateForDebug;"
addExternalPlugins: #(FT2Plugin);
generateSources; generate.

that's the correct way of doing

best,
Esteban

On Apr 10, 2012, at 1:51 PM, [hidden email] wrote:

The CocoaIOSJitConfig>>prepareForGeneration

"force using LF on Macs"
CrLfFileStream defaultToLF.

^ self prepareForCogGeneration

fails on CrLfFileStream defaultToLF.

The only implementer was  MultiByteFileStream defaultToLF.

The CrLfFileStream occurs in quite a *Config places.

Phil

2012/4/10 Mariano Martinez Peck <[hidden email]>


On Tue, Apr 10, 2012 at 12:16 AM, [hidden email] <[hidden email]> wrote:
I do have the cloned repos now.

For ConfigurationOfCog where can I pick this one up ? In the supplied image I guess. Right?

... moving (slowly) forward.

Thanks!

2012/4/6 [hidden email] <[hidden email]>

Oh great news!
Tomorrow will be Pharo iOS day.

Le 6 avr. 2012 17:54, "Esteban Lorenzano" <[hidden email]> a écrit :
Hi,

On Apr 6, 2012, at 10:51 AM, [hidden email] wrote:

I am still unable to get this to work.

latest nightly build from cmake is able to build valid xcode projects again [1].
Some adjusts are needed to actually build, but it is almost there (I will take care about that this days)

Also I see a jenkins build for OSX but not for iOS.

Yeah, and I want to have one, but it will take time (and time is tyrant, you know). 

XCode 4.3 will open old xcode projects so posting a full set of files that work out of cmake (ie a fully made build/ folder) would help a lot.

Would you be able to ship me such a set of files?

you already have them: clone of my repository [2] or blessed [3] and install latest ConfigurationOfCog

best,
Esteban







--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges




--
Mariano
http://marianopeck.wordpress.com




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges





--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges

<PharoScreenshot.3.png>




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges

<2012-04-10_14-56-49-cmake.png>




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges





--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: +32(0) 478 650 140 | Fax: +32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges

Reply | Threaded
Open this post in threaded view
|

Re: Vm on iOS with Xcode 4.3

philippeback
In reply to this post by philippeback
Additional info:

When doing:

sic := StackIPhoneConfig new.
sic addExternalPlugins: #(#IOSPlugin).

I get "Cannot add plugin IOSPlugin as external because it is already internal"

(screenshots)

So, how to proceed?

Phil



2012/4/10 [hidden email] <[hidden email]>
Fail: Key #IOSPlugin not found.

I have removed the build/ folder before generating anything.

See screenshot.

Phil


2012/4/10 Esteban Lorenzano <[hidden email]>
yeah... but you don't need FT2 for iOS... that instructions were for plain cog vm.

Run this instead: 

StackIPhoneConfig new 
"generateForDebug;"
generateSources; generate.

btw... you will need to remove CMakeCache.txt before running cmake again. 

On Apr 10, 2012, at 6:09 PM, [hidden email] wrote:

Looks like OSX 10.7 needs a bit of sudo port install automake to have the right version for FT2 plugin.

Let's see.

Phil

2012/4/10 Esteban Lorenzano <[hidden email]>
on ./build

execute: 

../codegen-scripts/extract-commit-info.sh 

then... you are going to have errors (23, if everything is like my installation)... and you are going to be in the same stage as me (I still didn't fixed that, is an cmakemaker issue)

On Apr 10, 2012, at 2:58 PM, [hidden email] wrote:

Ok, it generates sources.

I used the cmake you told me:

So, on Lion, some frameworks are not found. I guess that I'll have to update that by hand.

Philippe

2012/4/10 Esteban Lorenzano <[hidden email]>
sorry, my fault... there is no stable version on cog

try:

(ConfigurationOfCog project version: '4.4') load.


On Apr 10, 2012, at 2:11 PM, [hidden email] wrote:

Sorry, fails on #stable load.

Did you meant #release ?

Phil


2012/4/10 Esteban Lorenzano <[hidden email]>
that's a pretty old version of CMakeMaker... you should:

1) download latest pharo 1.4 (and place it in ./image)
2) install ConfigurationOfCog

Gofer it 
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfCog';
load.

3) execute

(ConfigurationOfCog project version: #stable) load.

4) then execute: 

CogCocoaIOSConfig new 
"generateForDebug;"
addExternalPlugins: #(FT2Plugin);
generateSources; generate.

that's the correct way of doing

best,
Esteban

On Apr 10, 2012, at 1:51 PM, [hidden email] wrote:

The CocoaIOSJitConfig>>prepareForGeneration

"force using LF on Macs"
CrLfFileStream defaultToLF.

^ self prepareForCogGeneration

fails on CrLfFileStream defaultToLF.

The only implementer was  MultiByteFileStream defaultToLF.

The CrLfFileStream occurs in quite a *Config places.

Phil

2012/4/10 Mariano Martinez Peck <[hidden email]>


On Tue, Apr 10, 2012 at 12:16 AM, [hidden email] <[hidden email]> wrote:
I do have the cloned repos now.

For ConfigurationOfCog where can I pick this one up ? In the supplied image I guess. Right?

... moving (slowly) forward.

Thanks!

2012/4/6 [hidden email] <[hidden email]>

Oh great news!
Tomorrow will be Pharo iOS day.

Le 6 avr. 2012 17:54, "Esteban Lorenzano" <[hidden email]> a écrit :
Hi,

On Apr 6, 2012, at 10:51 AM, [hidden email] wrote:

I am still unable to get this to work.

latest nightly build from cmake is able to build valid xcode projects again [1].
Some adjusts are needed to actually build, but it is almost there (I will take care about that this days)

Also I see a jenkins build for OSX but not for iOS.

Yeah, and I want to have one, but it will take time (and time is tyrant, you know). 

XCode 4.3 will open old xcode projects so posting a full set of files that work out of cmake (ie a fully made build/ folder) would help a lot.

Would you be able to ship me such a set of files?

you already have them: clone of my repository [2] or blessed [3] and install latest ConfigurationOfCog

best,
Esteban







--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges




--
Mariano
http://marianopeck.wordpress.com




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges





--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges

<PharoScreenshot.3.png>




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges

<2012-04-10_14-56-49-cmake.png>




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges





--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: +32(0) 478 650 140 | Fax: +32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges


PharoScreenshot.5.png (84K) Download Attachment
PharoScreenshot.6.png (79K) Download Attachment
PharoScreenshot.7.png (4K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: Vm on iOS with Xcode 4.3

EstebanLM
In reply to this post by philippeback
strange... just remove the "#"... and don't add it to #addExternalPlugins:

On Apr 11, 2012, at 2:56 PM, [hidden email] wrote:

I investigated for the plugin and found this as the only reference:

StackIPhoneConfig>>defaultInternalPlugins
^ #(
ADPCMCodecPlugin
BMPReadWriterPlugin 
BalloonEnginePlugin 
BitBltSimulation 
DSAPlugin 
DeflatePlugin 
"DropPlugin"
LocalePlugin 
FFTPlugin 
FilePlugin 
FloatArrayPlugin 
HostWindowPlugin 
JPEGReadWriter2Plugin 
JPEGReaderPlugin 
LargeIntegersPlugin 
Matrix2x3Plugin 
MiscPrimitivePlugin 
"RePlugin" 
SecurityPlugin 
"SocketPlugin"
SoundCodecPlugin 
SoundGenerationPlugin 
SoundPlugin
SurfacePlugin
UUIDPlugin
ObjectiveCPlugin 
#IOSPlugin)

IOSPlugin is in there with a # symbol.

And you told me to 

addExternalPlugins: #(iOSPlugin).

I am lost here, especially since it doesn't work. (Key Not Found)


Help!

Phil



2012/4/10 [hidden email] <[hidden email]>
Fail: Key #IOSPlugin not found.

I have removed the build/ folder before generating anything.

See screenshot.

Phil


2012/4/10 Esteban Lorenzano <[hidden email]>
yeah... but you don't need FT2 for iOS... that instructions were for plain cog vm.

Run this instead: 

StackIPhoneConfig new 
"generateForDebug;"
generateSources; generate.

btw... you will need to remove CMakeCache.txt before running cmake again. 

On Apr 10, 2012, at 6:09 PM, [hidden email] wrote:

Looks like OSX 10.7 needs a bit of sudo port install automake to have the right version for FT2 plugin.

Let's see.

Phil

2012/4/10 Esteban Lorenzano <[hidden email]>
on ./build

execute: 

../codegen-scripts/extract-commit-info.sh 

then... you are going to have errors (23, if everything is like my installation)... and you are going to be in the same stage as me (I still didn't fixed that, is an cmakemaker issue)

On Apr 10, 2012, at 2:58 PM, [hidden email] wrote:

Ok, it generates sources.

I used the cmake you told me:

So, on Lion, some frameworks are not found. I guess that I'll have to update that by hand.

Philippe

2012/4/10 Esteban Lorenzano <[hidden email]>
sorry, my fault... there is no stable version on cog

try:

(ConfigurationOfCog project version: '4.4') load.


On Apr 10, 2012, at 2:11 PM, [hidden email] wrote:

Sorry, fails on #stable load.

Did you meant #release ?

Phil


2012/4/10 Esteban Lorenzano <[hidden email]>
that's a pretty old version of CMakeMaker... you should:

1) download latest pharo 1.4 (and place it in ./image)
2) install ConfigurationOfCog

Gofer it 
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfCog';
load.

3) execute

(ConfigurationOfCog project version: #stable) load.

4) then execute: 

CogCocoaIOSConfig new 
"generateForDebug;"
addExternalPlugins: #(FT2Plugin);
generateSources; generate.

that's the correct way of doing

best,
Esteban

On Apr 10, 2012, at 1:51 PM, [hidden email] wrote:

The CocoaIOSJitConfig>>prepareForGeneration

"force using LF on Macs"
CrLfFileStream defaultToLF.

^ self prepareForCogGeneration

fails on CrLfFileStream defaultToLF.

The only implementer was  MultiByteFileStream defaultToLF.

The CrLfFileStream occurs in quite a *Config places.

Phil

2012/4/10 Mariano Martinez Peck <[hidden email]>


On Tue, Apr 10, 2012 at 12:16 AM, [hidden email] <[hidden email]> wrote:
I do have the cloned repos now.

For ConfigurationOfCog where can I pick this one up ? In the supplied image I guess. Right?

... moving (slowly) forward.

Thanks!

2012/4/6 [hidden email] <[hidden email]>

Oh great news!
Tomorrow will be Pharo iOS day.

Le 6 avr. 2012 17:54, "Esteban Lorenzano" <[hidden email]> a écrit :
Hi,

On Apr 6, 2012, at 10:51 AM, [hidden email] wrote:

I am still unable to get this to work.

latest nightly build from cmake is able to build valid xcode projects again [1].
Some adjusts are needed to actually build, but it is almost there (I will take care about that this days)

Also I see a jenkins build for OSX but not for iOS.

Yeah, and I want to have one, but it will take time (and time is tyrant, you know). 

XCode 4.3 will open old xcode projects so posting a full set of files that work out of cmake (ie a fully made build/ folder) would help a lot.

Would you be able to ship me such a set of files?

you already have them: clone of my repository [2] or blessed [3] and install latest ConfigurationOfCog

best,
Esteban







--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges




--
Mariano
http://marianopeck.wordpress.com




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges





--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges

<PharoScreenshot.3.png>




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges

<2012-04-10_14-56-49-cmake.png>




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges





--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: +32(0) 478 650 140 | Fax: +32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges


Reply | Threaded
Open this post in threaded view
|

Re: Vm on iOS with Xcode 4.3

philippeback
I did that. But it keeps on saying key #IOSPlugin not found in SystemDictionary.

StackIPhoneConfig>>prepareVMMaker

...

"touch plugins to force their source generation unconditionally"
allPlugins do: [:name | (Smalltalk globals at: name) touch ].
...

A print it on allPlugins gives:

 #(#ADPCMCodecPlugin #BMPReadWriterPlugin #BalloonEnginePlugin #BitBltSimulation #DSAPlugin #DeflatePlugin #LocalePlugin #FFTPlugin #FilePlugin #FloatArrayPlugin #HostWindowPlugin #JPEGReadWriter2Plugin #JPEGReaderPlugin #LargeIntegersPlugin #Matrix2x3Plugin #MiscPrimitivePlugin #SecurityPlugin #SoundCodecPlugin #SoundGenerationPlugin #SoundPlugin #SurfacePlugin #UUIDPlugin #ObjectiveCPlugin #IOSPlugin)

What could be causing that?

Phil

2012/4/11 Esteban Lorenzano <[hidden email]>
strange... just remove the "#"... and don't add it to #addExternalPlugins:

On Apr 11, 2012, at 2:56 PM, [hidden email] wrote:

I investigated for the plugin and found this as the only reference:

StackIPhoneConfig>>defaultInternalPlugins
^ #(
ADPCMCodecPlugin
BMPReadWriterPlugin 
BalloonEnginePlugin 
BitBltSimulation 
DSAPlugin 
DeflatePlugin 
"DropPlugin"
LocalePlugin 
FFTPlugin 
FilePlugin 
FloatArrayPlugin 
HostWindowPlugin 
JPEGReadWriter2Plugin 
JPEGReaderPlugin 
LargeIntegersPlugin 
Matrix2x3Plugin 
MiscPrimitivePlugin 
"RePlugin" 
SecurityPlugin 
"SocketPlugin"
SoundCodecPlugin 
SoundGenerationPlugin 
SoundPlugin
SurfacePlugin
UUIDPlugin
ObjectiveCPlugin 
#IOSPlugin)

IOSPlugin is in there with a # symbol.

And you told me to 

addExternalPlugins: #(iOSPlugin).

I am lost here, especially since it doesn't work. (Key Not Found)


Help!

Phil



2012/4/10 [hidden email] <[hidden email]>
Fail: Key #IOSPlugin not found.

I have removed the build/ folder before generating anything.

See screenshot.

Phil


2012/4/10 Esteban Lorenzano <[hidden email]>
yeah... but you don't need FT2 for iOS... that instructions were for plain cog vm.

Run this instead: 

StackIPhoneConfig new 
"generateForDebug;"
generateSources; generate.

btw... you will need to remove CMakeCache.txt before running cmake again. 

On Apr 10, 2012, at 6:09 PM, [hidden email] wrote:

Looks like OSX 10.7 needs a bit of sudo port install automake to have the right version for FT2 plugin.

Let's see.

Phil

2012/4/10 Esteban Lorenzano <[hidden email]>
on ./build

execute: 

../codegen-scripts/extract-commit-info.sh 

then... you are going to have errors (23, if everything is like my installation)... and you are going to be in the same stage as me (I still didn't fixed that, is an cmakemaker issue)

On Apr 10, 2012, at 2:58 PM, [hidden email] wrote:

Ok, it generates sources.

I used the cmake you told me:

So, on Lion, some frameworks are not found. I guess that I'll have to update that by hand.

Philippe

2012/4/10 Esteban Lorenzano <[hidden email]>
sorry, my fault... there is no stable version on cog

try:

(ConfigurationOfCog project version: '4.4') load.


On Apr 10, 2012, at 2:11 PM, [hidden email] wrote:

Sorry, fails on #stable load.

Did you meant #release ?

Phil


2012/4/10 Esteban Lorenzano <[hidden email]>
that's a pretty old version of CMakeMaker... you should:

1) download latest pharo 1.4 (and place it in ./image)
2) install ConfigurationOfCog

Gofer it 
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfCog';
load.

3) execute

(ConfigurationOfCog project version: #stable) load.

4) then execute: 

CogCocoaIOSConfig new 
"generateForDebug;"
addExternalPlugins: #(FT2Plugin);
generateSources; generate.

that's the correct way of doing

best,
Esteban

On Apr 10, 2012, at 1:51 PM, [hidden email] wrote:

The CocoaIOSJitConfig>>prepareForGeneration

"force using LF on Macs"
CrLfFileStream defaultToLF.

^ self prepareForCogGeneration

fails on CrLfFileStream defaultToLF.

The only implementer was  MultiByteFileStream defaultToLF.

The CrLfFileStream occurs in quite a *Config places.

Phil

2012/4/10 Mariano Martinez Peck <[hidden email]>


On Tue, Apr 10, 2012 at 12:16 AM, [hidden email] <[hidden email]> wrote:
I do have the cloned repos now.

For ConfigurationOfCog where can I pick this one up ? In the supplied image I guess. Right?

... moving (slowly) forward.

Thanks!

2012/4/6 [hidden email] <[hidden email]>

Oh great news!
Tomorrow will be Pharo iOS day.

Le 6 avr. 2012 17:54, "Esteban Lorenzano" <[hidden email]> a écrit :
Hi,

On Apr 6, 2012, at 10:51 AM, [hidden email] wrote:

I am still unable to get this to work.

latest nightly build from cmake is able to build valid xcode projects again [1].
Some adjusts are needed to actually build, but it is almost there (I will take care about that this days)

Also I see a jenkins build for OSX but not for iOS.

Yeah, and I want to have one, but it will take time (and time is tyrant, you know). 

XCode 4.3 will open old xcode projects so posting a full set of files that work out of cmake (ie a fully made build/ folder) would help a lot.

Would you be able to ship me such a set of files?

you already have them: clone of my repository [2] or blessed [3] and install latest ConfigurationOfCog

best,
Esteban







--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges




--
Mariano
http://marianopeck.wordpress.com




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges





--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges

<PharoScreenshot.3.png>




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges

<2012-04-10_14-56-49-cmake.png>




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges





--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges





--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: +32(0) 478 650 140 | Fax: +32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges

Reply | Threaded
Open this post in threaded view
|

Re: Vm on iOS with Xcode 4.3

EstebanLM
and class IOSPlugin is on system or not?

On Apr 11, 2012, at 3:10 PM, [hidden email] wrote:

I did that. But it keeps on saying key #IOSPlugin not found in SystemDictionary.

StackIPhoneConfig>>prepareVMMaker

...

"touch plugins to force their source generation unconditionally"
allPlugins do: [:name | (Smalltalk globals at: name) touch ].
...

A print it on allPlugins gives:

 #(#ADPCMCodecPlugin #BMPReadWriterPlugin #BalloonEnginePlugin #BitBltSimulation #DSAPlugin #DeflatePlugin #LocalePlugin #FFTPlugin #FilePlugin #FloatArrayPlugin #HostWindowPlugin #JPEGReadWriter2Plugin #JPEGReaderPlugin #LargeIntegersPlugin #Matrix2x3Plugin #MiscPrimitivePlugin #SecurityPlugin #SoundCodecPlugin #SoundGenerationPlugin #SoundPlugin #SurfacePlugin #UUIDPlugin #ObjectiveCPlugin #IOSPlugin)

What could be causing that?

Phil

2012/4/11 Esteban Lorenzano <[hidden email]>
strange... just remove the "#"... and don't add it to #addExternalPlugins:

On Apr 11, 2012, at 2:56 PM, [hidden email] wrote:

I investigated for the plugin and found this as the only reference:

StackIPhoneConfig>>defaultInternalPlugins
^ #(
ADPCMCodecPlugin
BMPReadWriterPlugin 
BalloonEnginePlugin 
BitBltSimulation 
DSAPlugin 
DeflatePlugin 
"DropPlugin"
LocalePlugin 
FFTPlugin 
FilePlugin 
FloatArrayPlugin 
HostWindowPlugin 
JPEGReadWriter2Plugin 
JPEGReaderPlugin 
LargeIntegersPlugin 
Matrix2x3Plugin 
MiscPrimitivePlugin 
"RePlugin" 
SecurityPlugin 
"SocketPlugin"
SoundCodecPlugin 
SoundGenerationPlugin 
SoundPlugin
SurfacePlugin
UUIDPlugin
ObjectiveCPlugin 
#IOSPlugin)

IOSPlugin is in there with a # symbol.

And you told me to 

addExternalPlugins: #(iOSPlugin).

I am lost here, especially since it doesn't work. (Key Not Found)


Help!

Phil



2012/4/10 [hidden email] <[hidden email]>
Fail: Key #IOSPlugin not found.

I have removed the build/ folder before generating anything.

See screenshot.

Phil


2012/4/10 Esteban Lorenzano <[hidden email]>
yeah... but you don't need FT2 for iOS... that instructions were for plain cog vm.

Run this instead: 

StackIPhoneConfig new 
"generateForDebug;"
generateSources; generate.

btw... you will need to remove CMakeCache.txt before running cmake again. 

On Apr 10, 2012, at 6:09 PM, [hidden email] wrote:

Looks like OSX 10.7 needs a bit of sudo port install automake to have the right version for FT2 plugin.

Let's see.

Phil

2012/4/10 Esteban Lorenzano <[hidden email]>
on ./build

execute: 

../codegen-scripts/extract-commit-info.sh 

then... you are going to have errors (23, if everything is like my installation)... and you are going to be in the same stage as me (I still didn't fixed that, is an cmakemaker issue)

On Apr 10, 2012, at 2:58 PM, [hidden email] wrote:

Ok, it generates sources.

I used the cmake you told me:

So, on Lion, some frameworks are not found. I guess that I'll have to update that by hand.

Philippe

2012/4/10 Esteban Lorenzano <[hidden email]>
sorry, my fault... there is no stable version on cog

try:

(ConfigurationOfCog project version: '4.4') load.


On Apr 10, 2012, at 2:11 PM, [hidden email] wrote:

Sorry, fails on #stable load.

Did you meant #release ?

Phil


2012/4/10 Esteban Lorenzano <[hidden email]>
that's a pretty old version of CMakeMaker... you should:

1) download latest pharo 1.4 (and place it in ./image)
2) install ConfigurationOfCog

Gofer it 
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfCog';
load.

3) execute

(ConfigurationOfCog project version: #stable) load.

4) then execute: 

CogCocoaIOSConfig new 
"generateForDebug;"
addExternalPlugins: #(FT2Plugin);
generateSources; generate.

that's the correct way of doing

best,
Esteban

On Apr 10, 2012, at 1:51 PM, [hidden email] wrote:

The CocoaIOSJitConfig>>prepareForGeneration

"force using LF on Macs"
CrLfFileStream defaultToLF.

^ self prepareForCogGeneration

fails on CrLfFileStream defaultToLF.

The only implementer was  MultiByteFileStream defaultToLF.

The CrLfFileStream occurs in quite a *Config places.

Phil

2012/4/10 Mariano Martinez Peck <[hidden email]>


On Tue, Apr 10, 2012 at 12:16 AM, [hidden email] <[hidden email]> wrote:
I do have the cloned repos now.

For ConfigurationOfCog where can I pick this one up ? In the supplied image I guess. Right?

... moving (slowly) forward.

Thanks!

2012/4/6 [hidden email] <[hidden email]>

Oh great news!
Tomorrow will be Pharo iOS day.

Le 6 avr. 2012 17:54, "Esteban Lorenzano" <[hidden email]> a écrit :
Hi,

On Apr 6, 2012, at 10:51 AM, [hidden email] wrote:

I am still unable to get this to work.

latest nightly build from cmake is able to build valid xcode projects again [1].
Some adjusts are needed to actually build, but it is almost there (I will take care about that this days)

Also I see a jenkins build for OSX but not for iOS.

Yeah, and I want to have one, but it will take time (and time is tyrant, you know). 

XCode 4.3 will open old xcode projects so posting a full set of files that work out of cmake (ie a fully made build/ folder) would help a lot.

Would you be able to ship me such a set of files?

you already have them: clone of my repository [2] or blessed [3] and install latest ConfigurationOfCog

best,
Esteban







--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges




--
Mariano
http://marianopeck.wordpress.com




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges





--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges

<PharoScreenshot.3.png>




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges

<2012-04-10_14-56-49-cmake.png>




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges





--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges




--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: <a href="tel:%2B32%280%29%20478%20650%20140" value="+32478650140" target="_blank">+32(0) 478 650 140 | Fax: <a href="tel:%2B32%20%280%29%2070%20408%20027" value="+3270408027" target="_blank">+32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges





--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: +32(0) 478 650 140 | Fax: +32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges


Reply | Threaded
Open this post in threaded view
|

Re: Vm on iOS with Xcode 4.3

Yanni Chiu
In reply to this post by philippeback
On 11/04/12 8:56 AM, [hidden email] wrote:
> I investigated for the plugin and found this as the only reference:
>
> StackIPhoneConfig>>defaultInternalPlugins
> ^ #(
...
> UUIDPlugin
> ObjectiveCPlugin
> #IOSPlugin)

This has an uppercase "I" in IOSPlugin

> IOSPlugin is in there with a # symbol.
>
> And you told me to
>
> addExternalPlugins: #(iOSPlugin).

This has a lowercase "i" in iOSPlugin.

Maybe that's causing a problem.


Reply | Threaded
Open this post in threaded view
|

Re: Vm on iOS with Xcode 4.3

philippeback
No, there wasn't any. #, i, I...

My mistake for writing it down incorrectly.

2012/4/11 Yanni Chiu <[hidden email]>
On 11/04/12 8:56 AM, [hidden email] wrote:
I investigated for the plugin and found this as the only reference:

StackIPhoneConfig>>defaultInternalPlugins
^ #(
...
UUIDPlugin
ObjectiveCPlugin
#IOSPlugin)

This has an uppercase "I" in IOSPlugin

IOSPlugin is in there with a # symbol.

And you told me to

addExternalPlugins: #(iOSPlugin).

This has a lowercase "i" in iOSPlugin.

Maybe that's causing a problem.





--
Philippe Back
"Helping you hit the top 3 outcomes you really want to achieve"

Mob: +32(0) 478 650 140 | Fax: +32 (0) 70 408 027 Mail: [hidden email] | Web: http://philippeback.eu | Blog:

High Octane SPRL
rue cour Boisacq 101
1301 Bierges

12