説明なし

Andy Li 2d5c322617 Let's make the Threads test more manageable for my old comp. 6 年 前
include 1052680134 Add minimp3 to fmt 6 年 前
libs 4a4cfe91f3 fixed warning 6 年 前
other 2d5c322617 Let's make the Threads test more manageable for my old comp. 6 年 前
src 818cbbcf32 skip win32 file dialog exceptions (close #172) 6 年 前
.gitignore 722d831c46 minor fixes for benchmarks 6 年 前
.travis.yml 2951760626 [TravisCI] osx_image 9.3 -> 9.4 6 年 前
Brewfile 795165e0c3 Update Brewfile 6 年 前
CMakeLists.txt 464e491a6e add "threads" test to cmake 6 年 前
Dockerfile 3f7dd6faed https everywhere 7 年 前
Dockerfile-i386 3f7dd6faed https everywhere 7 年 前
LICENSE d33328a4e2 Add license file 7 年 前
Makefile 4326ce33bb Add minimp3 include to CFLAGS, because reasons? 6 年 前
README.md 5d02c6eaa2 minor md formatting fix 6 年 前
appveyor.yml 9f1b5e62a1 [AppVeyor] add `haxelib install hashlink` 7 年 前
hl.sln f7ab3eee8c added hl mysql library 7 年 前
hl.vcxproj 893f738e6f entirely review jit callback system, started adapting to x64 calling conventions 7 年 前
hl.vcxproj.filters 893f738e6f entirely review jit callback system, started adapting to x64 calling conventions 7 年 前
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 b788d98518 added track.c to std (close #182) 6 年 前
libhl.vcxproj.filters b788d98518 added track.c to std (close #182) 6 年 前

README.md

HashLink

TravisCI Build Status AppVeyor 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 Code 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.