Sen descrición

Nicolas Cannasse 68daa125ad update release on windows to use vs2015 %!s(int64=3) %!d(string=hai) anos
.github 880b81d4e4 [make] Add sqlite.hdll target (#520) %!s(int64=3) %!d(string=hai) anos
include 898f2429b5 don't redefine snprintf for newer msvc %!s(int64=4) %!d(string=hai) anos
libs f327a87c00 Fix invalid signature in sqlite.hdll (#485) (#513) %!s(int64=3) %!d(string=hai) anos
other 880b81d4e4 [make] Add sqlite.hdll target (#520) %!s(int64=3) %!d(string=hai) anos
src 0dfc725675 bump year %!s(int64=3) %!d(string=hai) anos
.gitattributes 4024fb6a61 Mark `include` dir as third party for github (#541) %!s(int64=3) %!d(string=hai) anos
.gitignore c72c5d3716 Fix Visual Studio project templates (#505) %!s(int64=3) %!d(string=hai) anos
Brewfile 880b81d4e4 [make] Add sqlite.hdll target (#520) %!s(int64=3) %!d(string=hai) anos
CMakeLists.txt 55f3609330 Fix linux dynamic library issue when installing to `/usr/local/` (#483) %!s(int64=3) %!d(string=hai) anos
LICENSE d33328a4e2 Add license file %!s(int64=7) %!d(string=hai) anos
Makefile 68daa125ad update release on windows to use vs2015 %!s(int64=3) %!d(string=hai) anos
README.md 880b81d4e4 [make] Add sqlite.hdll target (#520) %!s(int64=3) %!d(string=hai) anos
azure-pipelines.yml f44b35ac80 build: prevent fixing SDL2 header path (#354) %!s(int64=5) %!d(string=hai) anos
hl.sln 06cce6d52d Added build targets for VS2017 (better perfs) (#486) %!s(int64=3) %!d(string=hai) anos
hl.vcxproj 06cce6d52d Added build targets for VS2017 (better perfs) (#486) %!s(int64=3) %!d(string=hai) anos
hl.vcxproj.filters 38c6a22471 added sampling profiler and chrome profiler json converter %!s(int64=5) %!d(string=hai) anos
hlc.vcxproj b528b62c1b replace HL OSetMethod by object method binding (for static & dynamic methods) %!s(int64=8) %!d(string=hai) anos
hlc.vcxproj.filters b528b62c1b replace HL OSetMethod by object method binding (for static & dynamic methods) %!s(int64=8) %!d(string=hai) anos
libhl.vcxproj 06cce6d52d Added build targets for VS2017 (better perfs) (#486) %!s(int64=3) %!d(string=hai) anos
libhl.vcxproj.filters d1556da8ee alloc.c -> gc.c compilation %!s(int64=5) %!d(string=hai) anos

README.md

HashLink

HashLink

Build Status Build Status

HashLink is a virtual machine for Haxe https://hashlink.haxe.org

Building on Linux/OSX

HashLink is distributed with some graphics libraries allowing to develop various applications, you can manually disable the libraries you want to compile in Makefile. Here's the dependencies that you install in order to compile all the libraries:

  • fmt: libpng-dev libturbojpeg-dev libvorbis-dev
  • openal: libopenal-dev
  • sdl: libsdl2-dev
  • ssl: libmbedtls-dev
  • uv: libuv1-dev
  • sqlite: libsqlite3-dev

To install all dependencies on the latest Ubuntu, for example:

sudo apt-get install libpng-dev libturbojpeg-dev libvorbis-dev libopenal-dev libsdl2-dev libmbedtls-dev libuv1-dev libsqlite3-dev

For 16.04, see this note.

To install all dependencies on the latest Fedora, for example:

sudo dnf install libpng-devel turbojpeg-devel libvorbis-devel openal-soft-devel SDL2-devel mesa-libGLU-devel mbedtls-devel libuv-devel sqlite-devel

And on OSX:

brew bundle to install the dependencies listed in Brewfile.

Once dependencies are installed you can simply call:

make

To be able to use hashlink binary with the debugger you can then call:

sudo make codesign_osx

To install hashlink binaries on your system you can then call:

make install

Building on Windows

Open hl.sln using Visual Studio C++ and compile.

To build all of HashLink libraries it is required to download several additional distributions, read each library README file (in hashlink/libs/xxx/README.md) for additional information.

Debugging

You can debug Haxe/HashLink applications by using the Visual Studio Code Debugger

Documentation

Read the Documentation on the HashLink wiki.