diff --git a/build/Jamfile.v2 b/build/Jamfile.v2 index 28ef11a..8dea388 100644 --- a/build/Jamfile.v2 +++ b/build/Jamfile.v2 @@ -26,7 +26,7 @@ project.pop-current ; lib psapi ; lib ws2_32 ; -feature.feature log-api : generic winnt unix : propagated ; +feature.feature log-api : generic winnt unix ; rule select-instruction-set-flags ( properties * ) { @@ -42,19 +42,6 @@ rule select-instruction-set-flags ( properties * ) } result = no ; } - else if $(instruction_set) = i686 && ! in $(properties) - { - # We override the default (which is i386 in this case) with our custom compiler flags. - # This hack is needed because Boost.Build fails to configure dependencies of this library if we modify property. - if gcc in $(properties) || clang in $(properties) || intel-linux in $(properties) || intel-darwin in $(properties) - { - result = "-march=i686" ; - } - else if msvc-7.1 in $(properties) - { - result = "/G6" ; - } - } return $(result) ; }