diff options
Diffstat (limited to 'lib/compilers/CL.js')
-rw-r--r-- | lib/compilers/CL.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/compilers/CL.js b/lib/compilers/CL.js index 693e6044d..10fc27b93 100644 --- a/lib/compilers/CL.js +++ b/lib/compilers/CL.js @@ -23,9 +23,11 @@ // POSSIBILITY OF SUCH DAMAGE. var Compile = require('../base-compiler'); +var asm = require('../asm-cl'); function compileCl(info, env) { var compile = new Compile(info, env); + compile.asm = new asm.AsmParser(env.compilerProps); info.supportsFiltersInBinary = true; if (process.platform == "linux") { var wine = env.gccProps("wine"); |