Re: [Pharo-users] Build instructions for building threaded 6.0 VM on linux

2017-03-29 Thread Alistair Grant
Hi Estaban, On 29 March 2017 at 15:04, Esteban Lorenzano wrote: > that’s because you need to generate commit info. > this is usually a hook, but is not working super fine. > I have thi script in my root: > > genVersion.sh: > #! /bin/bash > > echo "`cat opensmalltalk-vm/platforms/Cross/vm/sqSCCSVe

Re: [Pharo-users] Build instructions for building threaded 6.0 VM on linux

2017-03-29 Thread Ben Coman
On Wed, Mar 29, 2017 at 9:04 PM, Esteban Lorenzano wrote: > that’s because you need to generate commit info. a. penny drops! I guess you mean "Important notice for developers" per... https://github.com/OpenSmalltalk/opensmalltalk-vm I was on a new machine and that was long forgotten. cheers

Re: [Pharo-users] Build instructions for building threaded 6.0 VM on linux

2017-03-29 Thread Esteban Lorenzano
that’s because you need to generate commit info. this is usually a hook, but is not working super fine. I have thi script in my root: genVersion.sh: #! /bin/bash echo "`cat opensmalltalk-vm/platforms/Cross/vm/sqSCCSVersion.h | opensmalltalk-vm/.git_filters/RevDateURL.smudge`" > opensmalltal

Re: [Pharo-users] Build instructions for building threaded 6.0 VM on linux

2017-03-29 Thread Alistair Grant
Hi Ben, On 27 March 2017 at 01:37, Ben Coman wrote: > On Mon, Mar 27, 2017 at 5:25 AM, Alistair Grant wrote: >> Trying to use the VM produces: >> >> THERE_BE_DRAGONS_HERE >> Your VM is too old for this image. Please download the latest VM. >> 26 March 2017 10:54:36.099174 pm > > Last night I bui

Re: [Pharo-users] Build instructions for building threaded 6.0 VM on linux

2017-03-26 Thread Alistair Grant
On 27 March 2017 at 01:37, Ben Coman wrote: > On Mon, Mar 27, 2017 at 5:25 AM, Alistair Grant wrote: >> Trying to use the VM produces: >> >> THERE_BE_DRAGONS_HERE >> Your VM is too old for this image. Please download the latest VM. >> 26 March 2017 10:54:36.099174 pm > > Last night I built the 64

Re: [Pharo-users] Build instructions for building threaded 6.0 VM on linux

2017-03-26 Thread Ben Coman
On Mon, Mar 27, 2017 at 5:25 AM, Alistair Grant wrote: > Trying to use the VM produces: > > THERE_BE_DRAGONS_HERE > Your VM is too old for this image. Please download the latest VM. > 26 March 2017 10:54:36.099174 pm Last night I built the 64-bit pharo-vm on OSX and then trying to run 60451-64.im

Re: [Pharo-users] Build instructions for building threaded 6.0 VM on linux

2017-03-26 Thread Alistair Grant
Hi Esteban & Ben, On 26 March 2017 at 10:49, Esteban Lorenzano wrote: > >> On 26 Mar 2017, at 09:10, Alistair Grant wrote: >> I haven't used travis, but it looks like it is defining a number of >> environment variables, e.g. ARCH, FLAVOR, SRC_ARCH, HEARTBEAT. If I >> want the 32 bit linux threa

Re: [Pharo-users] Build instructions for building threaded 6.0 VM on linux

2017-03-26 Thread Ben Coman
On Sun, Mar 26, 2017 at 3:10 PM, Alistair Grant wrote: > On 26 March 2017 at 04:09, Pierce Ng wrote: >> On Sat, Mar 25, 2017 at 07:29:29PM +0100, Alistair Grant wrote: >>> make[3]: *** No rule to make target >>> '/usr/lib/i386-linux-gnu/libssl.so', needed by 'libgit2.so.0.23.0'. >> >> Sorry, also

Re: [Pharo-users] Build instructions for building threaded 6.0 VM on linux

2017-03-26 Thread Esteban Lorenzano
> On 26 Mar 2017, at 09:10, Alistair Grant wrote: > > On 26 March 2017 at 04:09, Pierce Ng wrote: >> On Sat, Mar 25, 2017 at 07:29:29PM +0100, Alistair Grant wrote: >>> make[3]: *** No rule to make target >>> '/usr/lib/i386-linux-gnu/libssl.so', needed by 'libgit2.so.0.23.0'. >> >> Sorry, also

Re: [Pharo-users] Build instructions for building threaded 6.0 VM on linux

2017-03-26 Thread Alistair Grant
On 26 March 2017 at 04:09, Pierce Ng wrote: > On Sat, Mar 25, 2017 at 07:29:29PM +0100, Alistair Grant wrote: >> make[3]: *** No rule to make target >> '/usr/lib/i386-linux-gnu/libssl.so', needed by 'libgit2.so.0.23.0'. > > Sorry, also > > % sudo apt-get install libssl-dev:i386 Thanks, Pierce.

Re: [Pharo-users] Build instructions for building threaded 6.0 VM on linux

2017-03-25 Thread Pierce Ng
On Sat, Mar 25, 2017 at 07:29:29PM +0100, Alistair Grant wrote: > make[3]: *** No rule to make target > '/usr/lib/i386-linux-gnu/libssl.so', needed by 'libgit2.so.0.23.0'. Sorry, also % sudo apt-get install libssl-dev:i386

Re: [Pharo-users] Build instructions for building threaded 6.0 VM on linux

2017-03-25 Thread Pierce Ng
On Sat, Mar 25, 2017 at 07:29:29PM +0100, Alistair Grant wrote: > make[3]: *** No rule to make target > '/usr/lib/i386-linux-gnu/libssl.so', needed by 'libgit2.so.0.23.0'. Try: % sudo apt-get install libssl1.0.0:i386 Pierce

Re: [Pharo-users] Build instructions for building threaded 6.0 VM on linux

2017-03-25 Thread Alistair Grant
Hi Esteban & Ben, Thanks very much for your quick replies. Both versions are failing trying to build libssl.so, see error messages below. The build output is huge, so I've only included the final few lines (a but more in Ben's build). My familiarity with makefiles is bad enough, and have never

Re: [Pharo-users] Build instructions for building threaded 6.0 VM on linux

2017-03-25 Thread Esteban Lorenzano
Hi, something like this: $ git clone https://github.com/pharo-project/pharo-vm.git $ cd pharo-vm/opensmalltalk-vm/build.linux32x86/pharo.cog.spur/build $ ./mvm you will be ok as long as you provide the requirements (taken from travis): addons: apt: packages: - debhelper - d

Re: [Pharo-users] Build instructions for building threaded 6.0 VM on linux

2017-03-25 Thread Ben Coman
On Sun, Mar 26, 2017 at 1:13 AM, Alistair Grant wrote: > Hi Everyone, > > Would someone please point me to instructions on how to build the 6.0 > threaded VM for linux (Ubuntu). Looking here... https://github.com/OpenSmalltalk/opensmalltalk-vm/tree/Cog/build.linux32x86/pharo.cog.spur its not the

[Pharo-users] Build instructions for building threaded 6.0 VM on linux

2017-03-25 Thread Alistair Grant
Hi Everyone, Would someone please point me to instructions on how to build the 6.0 threaded VM for linux (Ubuntu). Thanks! Alistair