Exemple #1
0
        public Compiler getCompiler(ProgrammingLanguageEnum languageEnum)
        {
            Compiler comp = null;

            if (languageEnum == ProgrammingLanguageEnum.Cpp89)
            {
                comp = new CPPCompiler(GPP_COMPILER_PATH, "-std=c++98");
            }
            else if (languageEnum == ProgrammingLanguageEnum.Cpp11)
            {
                comp = new CPPCompiler(GPP_COMPILER_PATH, "-std=c++11");
            }
            else if (languageEnum == ProgrammingLanguageEnum.C)
            {
                comp = new CPPCompiler(GCC_COMPILER_PATH);
            }
            else if (languageEnum == ProgrammingLanguageEnum.Python3)
            {
                comp = new PythonCompiler(PYTHON_INTERPRETER_PATH);
            }
            else
            {
                comp = null;
                throw new Exception("Invalid programming languageEnum enum: " + languageEnum);
            }

            return(comp);
        }
Exemple #2
0
        static void Main(string[] args)
        {
            string[] files = new[] { @"E:\cs-script\Samples\hello.cpp" };

            var cParams = new CompilerParameters();

            cParams.OutputAssembly = @"C:\Users\osh\AppData\Local\Temp\CSSCRIPT\Cache\-727015236\hello.cpp.dll";
            cParams.ReferencedAssemblies.Add(@"C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll");
            cParams.ReferencedAssemblies.Add(@"C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Linq\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Linq.dll");
            cParams.ReferencedAssemblies.Add(@"C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll");

            var compiler = new CPPCompiler();

            compiler.CompileAssemblyFromFileBatch(cParams, files);


            var parser = new CCSharpParser(@"E:\cs-script\engine\CSSCodeProvider.v3.5\Script.cs");

            parser.ToTempFile(false);
        }