暫無描述

Nicolas Cannasse cd26913662 windows now default 64 bit release 5 年之前
include 3720531512 added console hooks support for ssl 6 年之前
libs 842da6cad0 Add mikkt to fmt.hdll on Windows (#353) 5 年之前
other aaba93705b new memory dump format (using allocator api) 5 年之前
src 7361adc37e 1.11 5 年之前
.gitignore 722d831c46 minor fixes for benchmarks 6 年之前
Brewfile 795165e0c3 Update Brewfile 6 年之前
CMakeLists.txt 7361adc37e 1.11 5 年之前
LICENSE d33328a4e2 Add license file 7 年之前
Makefile cd26913662 windows now default 64 bit release 5 年之前
README.md 10518535b7 remove Travis/AppVeyor 6 年之前
azure-pipelines.yml 1badd8f7cd [azure-pipelines] initial config 6 年之前
hl.sln f7ab3eee8c added hl mysql library 7 年之前
hl.vcxproj 38c6a22471 added sampling profiler and chrome profiler json converter 5 年之前
hl.vcxproj.filters 38c6a22471 added sampling profiler and chrome profiler json converter 5 年之前
hlc.vcxproj b528b62c1b replace HL OSetMethod by object method binding (for static & dynamic methods) 8 年之前
hlc.vcxproj.filters b528b62c1b replace HL OSetMethod by object method binding (for static & dynamic methods) 8 年之前
libhl.vcxproj d1556da8ee alloc.c -> gc.c compilation 5 年之前
libhl.vcxproj.filters d1556da8ee alloc.c -> gc.c compilation 5 年之前

README.md

HashLink

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

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

For 16.04, see this note.

And on OSX:

brew bundle to install the dependencies listed in Brewfile.

Once dependencies are installed you can simply call:

make

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.