On Thu, Jul 21, 2016 at 8:35 AM, Ankit Agarwal via swift-dev
<swift-dev@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 <griboz...@gmail.com>*/
_______________________________________________
swift-dev mailing list
swift-dev@swift.org
https://lists.swift.org/mailman/listinfo/swift-dev

Reply via email to