Skip to content

Commit

Permalink
Generate Mono debug symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
sorear committed Oct 25, 2010
1 parent 5b07e77 commit 412a5eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/CompilerDriver.pm
Expand Up @@ -234,15 +234,15 @@ sub compile {
[ 'gmcs', sub {
my @args;
if ($args{selfcontained}) {
@args = ("gmcs",
@args = ("gmcs", "/debug",
"/out:" . $args{selfcontained},
(map { File::Spec->catfile($libdir, $_) }
"Kernel.cs", "Cursor.cs"),
(map { build_file($_ . ".cs") }
(sort keys %{ $ast->tdeps })),
$csfile);
} else {
@args = ("gmcs",
@args = ("gmcs", "/debug",
(defined($name) ? ("/target:library") : ()),
"/lib:$builddir",
"/r:Kernel.dll",
Expand Down

0 comments on commit 412a5eb

Please sign in to comment.