diff options
author | Alexey Neyman <stilor@att.net> | 2017-04-07 10:13:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-07 10:13:06 -0700 |
commit | 16e703a4e5bc9277ce642d5a7a451c7025d495ad (patch) | |
tree | 460f38df67304ecf6e0877dca7d42d279d5b1552 /scripts/build/libc | |
parent | 242c156d95b525c38a018ebf58c69ce4e1fb3283 (diff) | |
parent | 89468256ec0d9c63b6ed852a90183e70aecbbe3a (diff) | |
download | crosstool-ng-16e703a4e5bc9277ce642d5a7a451c7025d495ad.tar.gz crosstool-ng-16e703a4e5bc9277ce642d5a7a451c7025d495ad.tar.bz2 crosstool-ng-16e703a4e5bc9277ce642d5a7a451c7025d495ad.zip |
Merge pull request #676 from tamird/mingw-secure-api
MinGW: add --enable-secure-api config option
Diffstat (limited to 'scripts/build/libc')
-rw-r--r-- | scripts/build/libc/mingw.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/build/libc/mingw.sh b/scripts/build/libc/mingw.sh index b737b231..2f0dda53 100644 --- a/scripts/build/libc/mingw.sh +++ b/scripts/build/libc/mingw.sh @@ -40,6 +40,11 @@ do_libc_start_files() { :) ;; esac + case "${CT_MINGW_SECURE_API}" in + :y) sdk_opts+=( "--enable-secure-api" );; + :) ;; + esac + CT_mkdir_pushd "${CT_BUILD_DIR}/build-mingw-w64-headers" CT_DoLog EXTRA "Configuring Headers" |