From dc0a2a815b9afd89c382bfb1a30877e814dd3458 Mon Sep 17 00:00:00 2001
From: "arseny.kapoulkine"
 <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>
Date: Tue, 20 Apr 2010 20:46:18 +0000
Subject: [PATCH] unicode: Default toolset for Unix systems is gcc

git-svn-id: http://pugixml.googlecode.com/svn/trunk@279 99668b35-9821-0410-8761-19e4c4f06640
---
 Jamfile.jam | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/Jamfile.jam b/Jamfile.jam
index 1d20b86f..2e3a59fc 100644
--- a/Jamfile.jam
+++ b/Jamfile.jam
@@ -13,7 +13,14 @@
 # default toolset/configuration
 if ( ! $(toolset) )
 {
-	exit You should specify a toolset ;
+	if ( $(UNIX) )
+	{
+		toolset = "gcc" ;
+	}
+	else
+	{
+		exit You should specify a toolset ;
+	}
 }
 
 if ( ! $(configuration) )
-- 
GitLab