This package is designed to handle compile/run of any other compilers in your project

    $compilers = [
        "__COMPILER_NAME__"=>[
            "path" => "__COMPILER_PATH__",
            "file_extension" =>'__CODE_FILE_EXTENSION_',
            "compile_func" => __NAME_FOR_YOUR_COMPILER_FUNCTION__,
            "run_func" => __NAME_FOR_YOUR_RUN_FUNCTION__
        ]
    ];

Steps