diff --git a/src/tools/clang-darwin.jam b/src/tools/clang-darwin.jam index 76b083e5f..146e2b5ab 100644 --- a/src/tools/clang-darwin.jam +++ b/src/tools/clang-darwin.jam @@ -87,9 +87,10 @@ toolset.flags clang-darwin.compile OPTIONS off : -O0 ; toolset.flags clang-darwin.compile OPTIONS speed : -O3 ; toolset.flags clang-darwin.compile OPTIONS space : -Os ; +# For clang, 'on' and 'full' are identical toolset.flags clang-darwin.compile OPTIONS off : -fno-inline ; toolset.flags clang-darwin.compile OPTIONS on : -Wno-inline ; -toolset.flags clang-darwin.compile OPTIONS full : -finline-functions -Wno-inline ; +toolset.flags clang-darwin.compile OPTIONS full : -Wno-inline ; toolset.flags clang-darwin.compile OPTIONS off : -w ; toolset.flags clang-darwin.compile OPTIONS on : -Wall ;