Move load/loadPrime to CFFI, remove new CFFI constructor, use @:cffi instead

This commit is contained in:
Joshua Granick
2015-08-31 21:59:56 -07:00
parent 86531354a0
commit 2e617a7f5a
29 changed files with 1428 additions and 1412 deletions

View File

@@ -9,8 +9,8 @@ import haxe.Serializer;
import haxe.Unserializer;
import haxe.io.Path;
import haxe.rtti.Meta;
import lime.system.CFFI;
import lime.tools.helpers.*;
import lime.system.System;
import lime.tools.platforms.*;
import lime.project.*;
import sys.io.File;
@@ -363,7 +363,7 @@ class CommandLineTools {
if (args.length > 0 && args[0].toLowerCase () == "rebuild") {
System.disableCFFI = true;
CFFI.enabled = false;
}
@@ -371,7 +371,7 @@ class CommandLineTools {
if (arg == "-nocffi" || arg == "-rebuild") {
System.disableCFFI = true;
CFFI.enabled = false;
}