Skip to content

Instantly share code, notes, and snippets.

@hannesm
Created July 6, 2012 13:28
Show Gist options
  • Save hannesm/3060146 to your computer and use it in GitHub Desktop.
Save hannesm/3060146 to your computer and use it in GitHub Desktop.
fdmake
--- a/admin/builds/fdmake.pl
+++ b/admin/builds/fdmake.pl
@@ -145,16 +145,16 @@ sub build_library {
print "Building $library... ";
my $command = $compiler;
- if ($debugger) {
- $command .= " -debugger";
- }
+# if ($debugger) {
+# $command .= " -debugger";
+# }
if (exists $header->{'target-type'}) {
$command .= " -target " . $header->{'target-type'};
}
$command .= " $library";
if ($debugger) {
- system($command) or die "Couldn't execute $command";
+ system($command);
print "\n";
}
else {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment