X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=gruntmaster-compile;h=be5dab5c3bccd03a3076c4061ee41c0dc078b0f7;hb=333da65132be56555d5787751ca5ed869b9af1d0;hp=3a0dac886e9248e41f8f96b9e651d390ec586db8;hpb=92fbf93360dc44a13c48ad68be8333a461927f36;p=gruntmaster-daemon.git diff --git a/gruntmaster-compile b/gruntmaster-compile index 3a0dac8..be5dab5 100755 --- a/gruntmaster-compile +++ b/gruntmaster-compile @@ -31,6 +31,7 @@ given ($format){ exec 'ghc', qw/-DONLINE_JUDGE -Wall -O2 -o/, $basename, $name when 'HASKELL'; exec 'rustc', qw/-O -o/, $basename, $name when 'RUST'; exec 'ocamlc', qw/-o/, $basename, $name when 'OCAML'; + exec 'dmd', qw/-version=ONLINE_JUDGE -O -release -inline -noboundscheck/, $name when 'D'; when ('BRAINFUCK') { system 'bfc', $name and die "bfc failed: errno=$! return=$?";