diff options
author | Семенов Герман <GermanAizek@yandex.ru> | 2024-03-26 12:06:57 +0100 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2025-01-08 11:13:10 +0100 |
commit | bbd181166391e4e1fd0a647f43b8b239609298ea (patch) | |
tree | 38118bb5e5cdaed1cca6608712d41bcf0abad5f1 /NOTES-WINDOWS.md | |
parent | Check returns of various sk_*_push functions (diff) | |
download | openssl-bbd181166391e4e1fd0a647f43b8b239609298ea.tar.xz openssl-bbd181166391e4e1fd0a647f43b8b239609298ea.zip |
Added configuration for Embarcadero-Borland Clang Compiler 64 (BCC64)
Signed-off-by: Герман Семенов <GermanAizek@yandex.ru>
Signed-off-by: Herman Semenov <GermanAizek@yandex.ru>
Reviewed-by: Hugo Landau <hlandau@devever.net>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/23377)
Diffstat (limited to 'NOTES-WINDOWS.md')
-rw-r--r-- | NOTES-WINDOWS.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/NOTES-WINDOWS.md b/NOTES-WINDOWS.md index 21c82e8a76..16105ea041 100644 --- a/NOTES-WINDOWS.md +++ b/NOTES-WINDOWS.md @@ -148,8 +148,8 @@ Native builds using Embarcadero C++Builder ========================================= This toolchain (a descendant of Turbo/Borland C++) is an alternative to MSVC. -OpenSSL currently includes an experimental 32-bit configuration targeting the -Clang-based compiler (`bcc32c.exe`) in v10.3.3 Community Edition. +OpenSSL currently includes experimental 32-bit and 64-bit configurations targeting the +Clang-based compiler (`bcc32c.exe` and `bcc64.exe`) in v10.3.3 Community Edition. <https://www.embarcadero.com/products/cbuilder/starter> 1. Install Perl. @@ -158,6 +158,8 @@ Clang-based compiler (`bcc32c.exe`) in v10.3.3 Community Edition. 3. Go to the root of the OpenSSL source directory and run: `perl Configure BC-32 --prefix=%CD%` + for Win64 builds use: + `perl Configure BC-64 --prefix=%CD%` 4. `make -N` |