From 206e4b7c711012e8e18aa4cc359f5aca72f073c2 Mon Sep 17 00:00:00 2001 From: arvidn Date: Thu, 20 Aug 2015 20:56:52 +0200 Subject: [PATCH] attempt to fix msvc 64 bit build --- Jamfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Jamfile b/Jamfile index 07f1dd9a4..72806c5eb 100644 --- a/Jamfile +++ b/Jamfile @@ -338,6 +338,12 @@ rule building ( properties * ) result += TORRENT_EXPORT_EXTRA ; } + if msvc in $(properties) + { + # allow larger .obj files (with more sections) + result += /bigobj ; + } + if ( debug in $(properties) && ( clang in $(properties) || gcc in $(properties)