mx-1.0: Remove abstract for several Draggable and Droppable methods
[vala-lang.git] / codegen / valaccodecompiler.vala
blob09ab3d619501e2aed1b08b971bb726836562f9bf
1 /* valaccodecompiler.vala
3 * Copyright (C) 2007-2009 Jürg Billeter
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 * Author:
20 * Jürg Billeter <j@bitron.ch>
23 using GLib;
25 /**
26 * Interface to the C compiler.
28 public class Vala.CCodeCompiler {
29 public CCodeCompiler () {
32 static bool package_exists(string package_name) {
33 string pc = "pkg-config --exists " + package_name;
34 int exit_status;
36 try {
37 Process.spawn_command_line_sync (pc, null, null, out exit_status);
38 return (0 == exit_status);
39 } catch (SpawnError e) {
40 Report.error (null, e.message);
41 return false;
45 /**
46 * Compile generated C code to object code and optionally link object
47 * files.
49 * @param context a code context
51 public void compile (CodeContext context, string? cc_command, string[] cc_options) {
52 bool use_pkgconfig = false;
54 string pc = "pkg-config --cflags";
55 if (!context.compile_only) {
56 pc += " --libs";
58 if (context.profile == Profile.GOBJECT) {
59 use_pkgconfig = true;
60 pc += " gobject-2.0";
61 if (context.thread) {
62 pc += " gthread-2.0";
65 foreach (string pkg in context.get_packages ()) {
66 if (package_exists (pkg)) {
67 use_pkgconfig = true;
68 pc += " " + pkg;
71 string pkgflags = "";
72 if (use_pkgconfig) {
73 try {
74 int exit_status;
75 Process.spawn_command_line_sync (pc, out pkgflags, null, out exit_status);
76 if (exit_status != 0) {
77 Report.error (null, "pkg-config exited with status %d".printf (exit_status));
78 return;
80 } catch (SpawnError e) {
81 Report.error (null, e.message);
82 return;
86 // TODO compile the C code files in parallel
88 if (cc_command == null) {
89 cc_command = "cc";
91 string cmdline = cc_command;
92 if (context.debug) {
93 cmdline += " -g";
95 if (context.compile_only) {
96 cmdline += " -c";
97 } else if (context.output != null) {
98 string output = context.output;
99 if (context.directory != null && context.directory != "" && !Path.is_absolute (context.output)) {
100 output = "%s%c%s".printf (context.directory, Path.DIR_SEPARATOR, context.output);
102 cmdline += " -o " + Shell.quote (output);
105 /* we're only interested in non-pkg source files */
106 var source_files = context.get_source_files ();
107 foreach (SourceFile file in source_files) {
108 if (file.file_type == SourceFileType.SOURCE) {
109 cmdline += " " + Shell.quote (file.get_csource_filename ());
112 var c_source_files = context.get_c_source_files ();
113 foreach (string file in c_source_files) {
114 cmdline += " " + Shell.quote (file);
117 // add libraries after source files to fix linking
118 // with --as-needed and on Windows
119 cmdline += " " + pkgflags.strip ();
120 foreach (string cc_option in cc_options) {
121 cmdline += " " + Shell.quote (cc_option);
124 if (context.verbose_mode) {
125 stdout.printf ("%s\n", cmdline);
128 try {
129 int exit_status;
130 Process.spawn_command_line_sync (cmdline, null, null, out exit_status);
131 if (exit_status != 0) {
132 Report.error (null, "cc exited with status %d".printf (exit_status));
134 } catch (SpawnError e) {
135 Report.error (null, e.message);
138 /* remove generated C source and header files */
139 foreach (SourceFile file in source_files) {
140 if (file.file_type == SourceFileType.SOURCE) {
141 if (!context.save_csources) {
142 FileUtils.unlink (file.get_csource_filename ());