[vala/parallel: 8/17] compiler: Add --use-fast-vapi commandline argument
- From: Ryan Lortie <ryanl src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vala/parallel: 8/17] compiler: Add --use-fast-vapi commandline argument
- Date: Sun, 29 Aug 2010 22:21:42 +0000 (UTC)
commit 889ac73675b12cc6b47903d81e1d1d4bfdcce22a
Author: Ryan Lortie <desrt desrt ca>
Date: Tue Aug 24 19:33:50 2010 +0200
compiler: Add --use-fast-vapi commandline argument
Accepts an input file that was previously produced with the --fast-vapi=
commandline argument.
compiler/valacompiler.vala | 13 ++++++++++++-
1 files changed, 12 insertions(+), 1 deletions(-)
---
diff --git a/compiler/valacompiler.vala b/compiler/valacompiler.vala
index 87d45da..41b0d46 100644
--- a/compiler/valacompiler.vala
+++ b/compiler/valacompiler.vala
@@ -38,6 +38,8 @@ class Vala.Compiler {
static string gir;
[CCode (array_length = false, array_null_terminated = true)]
static string[] packages;
+ [CCode (array_length = false, array_null_terminated = true)]
+ static string[] fast_vapis;
static string target_glib;
static bool ccode_only;
@@ -98,6 +100,7 @@ class Vala.Compiler {
{ "internal-header", 'h', 0, OptionArg.FILENAME, ref internal_header_filename, "Output internal C header file", "FILE" },
{ "internal-vapi", 0, 0, OptionArg.FILENAME, ref internal_vapi_filename, "Output vapi with internal api", "FILE" },
{ "fast-vapi", 0, 0, OptionArg.STRING, ref fast_vapi_filename, "Output vapi without performing symbol resolution", null },
+ { "use-fast-vapi", 0, 0, OptionArg.STRING_ARRAY, ref fast_vapis, "Use --fast-vapi output during this compile", null },
{ "symbols", 0, 0, OptionArg.FILENAME, ref symbols_filename, "Output symbols file", "FILE" },
{ "compile", 'c', 0, OptionArg.NONE, ref compile_only, "Compile but do not link", null },
{ "output", 'o', 0, OptionArg.FILENAME, ref output, "Place output in file FILE", "FILE" },
@@ -329,6 +332,14 @@ class Vala.Compiler {
}
packages = null;
}
+
+ if (fast_vapis != null) {
+ foreach (string vapi in fast_vapis) {
+ var rpath = realpath (vapi);
+ var source_file = new SourceFile (context, SourceFileType.FAST, rpath);
+ context.add_source_file (source_file);
+ }
+ }
if (context.report.get_errors () > 0 || (fatal_warnings && context.report.get_warnings () > 0)) {
return quit ();
@@ -723,7 +734,7 @@ class Vala.Compiler {
return 0;
}
- if (sources == null) {
+ if (sources == null && fast_vapis == null) {
stderr.printf ("No source file specified.\n");
return 1;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]