From 0fde20610d1434bf73be991ff61023396da9a4d4 Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Tue, 29 Nov 2011 13:17:40 +0000 Subject: [PATCH] Bump default compatibility to vc10. The impact is to eliminate warning about use of deprecated compiler switch /Op. [SVN r75725] --- src/tools/intel-win.jam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/intel-win.jam b/src/tools/intel-win.jam index 691b5dce9..c9adac0d9 100644 --- a/src/tools/intel-win.jam +++ b/src/tools/intel-win.jam @@ -161,8 +161,8 @@ rule init ( version ? : # the compiler version if ! $(compatibility) { - # If there's no backend version, assume 7.1. - compatibility = vc7.1 ; + # If there's no backend version, assume 10. + compatibility = vc10 ; } local extract-version = [ MATCH ^vc(.*) : $(compatibility) ] ;