You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ft...@apache.org on 2015/06/16 20:34:45 UTC

git commit: [flex-falcon] [refs/heads/develop] - Should build using Mxmlc/Compc

Repository: flex-falcon
Updated Branches:
  refs/heads/develop ca0751102 -> 5c8e24cce


Should build using Mxmlc/Compc


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/5c8e24cc
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/5c8e24cc
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/5c8e24cc

Branch: refs/heads/develop
Commit: 5c8e24cceae3b1dd9f28b42f47b2358d25420aae
Parents: ca07511
Author: Frédéric THOMAS <we...@gmail.com>
Authored: Tue Jun 16 19:34:14 2015 +0100
Committer: Frédéric THOMAS <we...@gmail.com>
Committed: Tue Jun 16 19:34:14 2015 +0100

----------------------------------------------------------------------
 flex-compiler-oem/src/flex2/tools/Compc.java | 4 ++++
 flex-compiler-oem/src/flex2/tools/Mxmlc.java | 4 ++++
 2 files changed, 8 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/5c8e24cc/flex-compiler-oem/src/flex2/tools/Compc.java
----------------------------------------------------------------------
diff --git a/flex-compiler-oem/src/flex2/tools/Compc.java b/flex-compiler-oem/src/flex2/tools/Compc.java
index 6580e9a..d94e978 100644
--- a/flex-compiler-oem/src/flex2/tools/Compc.java
+++ b/flex-compiler-oem/src/flex2/tools/Compc.java
@@ -40,6 +40,10 @@ public class Compc extends Tool {
     }
 
     public static int compcNoExit(String[] args) throws InvocationTargetException, NoSuchMethodException, InstantiationException, IllegalAccessException {
+
+        COMPILER = COMPC.class;
+        JS_COMPILER = CompJSC.class;
+
         return compile(args);
     }
 

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/5c8e24cc/flex-compiler-oem/src/flex2/tools/Mxmlc.java
----------------------------------------------------------------------
diff --git a/flex-compiler-oem/src/flex2/tools/Mxmlc.java b/flex-compiler-oem/src/flex2/tools/Mxmlc.java
index ed908f9..93ed8e2 100644
--- a/flex-compiler-oem/src/flex2/tools/Mxmlc.java
+++ b/flex-compiler-oem/src/flex2/tools/Mxmlc.java
@@ -60,6 +60,10 @@ public final class Mxmlc extends Tool {
     }
 
     public static int mxmlcNoExit(String[] args) throws InvocationTargetException, NoSuchMethodException, InstantiationException, IllegalAccessException {
+
+        COMPILER = MXMLC.class;
+        JS_COMPILER = MxmlJSC.class;
+
         return compile(args);
     }