From 498646e00c11ecb137eac12e4eab92b7f8a3fb98 Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Sun, 29 Jun 2014 00:35:33 +0300 Subject: [PATCH] Update gruntmaster-compile documentation --- gruntmaster-compile | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/gruntmaster-compile b/gruntmaster-compile index 5228bdd..b4c2ab1 100755 --- a/gruntmaster-compile +++ b/gruntmaster-compile @@ -55,7 +55,7 @@ Compile commands for each format: =item CPP - g++ -DONLINE_JUDGE -std=gnu11 -fabi-version=6 -Wall -Wextra -O2 -o $output $input + g++ -DONLINE_JUDGE -std=gnu++11 -fabi-version=6 -Wall -Wextra -O2 -o $output $input =item MONO @@ -69,6 +69,18 @@ Compile commands for each format: fpc -dONLINE_JUDGE -O2 $input +=item GOLANG + + go build -compiler gc $input + +=item GCCGO + + go build -compiler gccgo $input + +=item HASKELL + + ghc -DONLINE_JUDGE -Wall -O2 -o $output $input + =item PERL cp $input $output -- 2.30.2