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
···
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`
On Thu, Jul 21, 2016 at 9:08 PM, Dmitri Gribenko <gribozavr@gmail.com> wrote:
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.