Building Harbour 3.4 with emscripten

Post Reply
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Building Harbour 3.4 with emscripten

Post by Antonio Linares »

From OSX: https://webassembly.org/getting-started ... ers-guide/

git clone https://github.com/juj/emsdk.git
cd emsdk
./emsdk install latest
./emsdk activate latest
source ./emsdk_env.sh --build=Release

cd ..
git clone https://vszakats.github.io/harbour-core harbour34
cd harbour34
nano go.sh

Code: Select all

export HB_PLATFORM=abstr
export HB_COMPILER=wasm
export HB_BUILD_3RDEXT=no
export HB_HOST_BIN=harbour
make
chmod +x go.sh
./go.sh
regards, saludos

Antonio Linares
www.fivetechsoft.com
hmpaquito
Posts: 1200
Joined: Thu Oct 30, 2008 2:37 pm

Re: Building Harbour 3.4 with emscripten

Post by hmpaquito »

Hola Antonio,

Sí, leí la noticia en el grupo de usuarios de harbour, cliqueé el enlace y más o menos pude entender que se trataría de un compilador para javascript... o eso creo...

https://groups.google.com/forum/#!topic ... Ixe2UrXOec

Ahora bien, mi pregunta es ¿ Nos afecta (positivamente) esto a los usuarios de fwh ?

Saludos
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: Building Harbour 3.4 with emscripten

Post by Antonio Linares »

Paco,

emscripten y webassembly permiten compilar código en C y ejecutarlo en el navegador.

Lo he estado probando y el tamaño del resultado es enorme frente al tamaño del código C usado

En principio nos permitiría poder ejecutar Harbour desde el propio navegador. Me refiero a compilar PRGs.

Mi interés por este tema viene de un prototipo en el que he estado trabajando para tener un IDE de Harbour en la nube:
https://fivetechsoft.github.io/xcloud/
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply