[swift-dev] Standard Library not built in release mode with -R in build script

Dmitri Gribenko gribozavr at gmail.com
Thu Jul 21 10:38:23 CDT 2016


On Thu, Jul 21, 2016 at 8:35 AM, Ankit Agarwal via swift-dev
<swift-dev at swift.org> wrote:
> Standard library is not built in release mode by default with -R flag in
> build script. Is that intended behaviour?
>
> Passing `--no-swift-stdlib-assertions --build-swift-static-stdlib
> --swift-enable-ast-verifier=0` to build script created the build in folder
> `Ninja-ReleaseAssert+stdlib-Release`

Release/debug flags control the optimization level.  The assertions
are controlled with separate flags.

If you want to build the library for use in production, you need to
enable optimization and turn off assertions with two separate flags.

Dmitri

-- 
main(i,j){for(i=2;;i++){for(j=2;j<i;j++){if(!(i%j)){j=0;break;}}if
(j){printf("%d\n",i);}}} /*Dmitri Gribenko <gribozavr at gmail.com>*/


More information about the swift-dev mailing list