From: Marius Gavrilescu <marius@ieval.ro>
Date: Sat, 7 Feb 2015 10:58:07 +0000 (+0200)
Subject: Remove -fabi-version from g++ compile command
X-Git-Tag: 5999.000_005~53
X-Git-Url: http://git.ieval.ro/?a=commitdiff_plain;h=768c08b46b1af0ecb07cec14c55336f65901046c;p=gruntmaster-daemon.git

Remove -fabi-version from g++ compile command
---

diff --git a/gruntmaster-compile b/gruntmaster-compile
index 4033651..229eb98 100755
--- a/gruntmaster-compile
+++ b/gruntmaster-compile
@@ -17,7 +17,7 @@ if ($ret) {
 } else {
 	given ($format){
 		exec 'gcc', qw/-DONLINE_JUDGE -std=gnu11 -Wall -Wextra -O2 -o/, $basename, $name when 'C';
-		exec 'g++', qw/-DONLINE_JUDGE -std=gnu++11 -fabi-version=6 -Wall -Wextra -O2 -o/, $basename, $name when 'CPP';
+		exec 'g++', qw/-DONLINE_JUDGE -std=gnu++11 -Wall -Wextra -O2 -o/, $basename, $name when 'CPP';
 		when ('MONO') {
 			system 'gmcs', '-d:ONLINE_JUDGE', $name and die "gmcs failed: errno=$! return=$?";
 			rename "$basename.exe", $basename;