Skip to content

Instantly share code, notes, and snippets.

@ibilon
ibilon / Host.hx
Last active January 2, 2018 12:06
Calling hxcpp app from c++ app
// haxe -main Host -cpp host
// ./host/Host ./lib/Main.dso
class Host {
public static function main () {
var lib = Dl.open(Sys.args()[0], Dl.RTLD_NOW);
if (lib == null) {
trace("can't find library");
Sys.exit(1);
}