Skip to content

Commit

Permalink
[botan] Fix debug info (#22911)
Browse files Browse the repository at this point in the history
* [botan] Fix debug info

- Embed debug info into object files.
- Enable debug info for release builds.
- Pass-through C++ build flags.

Fixes #12088

* Fix version database.

Co-authored-by: Billy Robert O'Neal III <[email protected]>
  • Loading branch information
gix and BillyONeal authored Feb 4, 2022
1 parent 0e8ad3b commit e407f1b
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 3 deletions.
17 changes: 17 additions & 0 deletions ports/botan/embed-debug-info.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
diff --git a/src/build-data/cc/msvc.txt b/src/build-data/cc/msvc.txt
index 2306a4485..977e2e958 100644
--- a/src/build-data/cc/msvc.txt
+++ b/src/build-data/cc/msvc.txt
@@ -17,10 +17,10 @@ optimization_flags "/O2 /Oi"
size_optimization_flags "/O1 /Os"

# for debug info in the object file:
-#debug_info_flags "/Z7"
+debug_info_flags "/Z7"

# for using a PDB file:
-debug_info_flags "/Zi /FS"
+#debug_info_flags "/Zi /FS"

preproc_flags "/nologo /EP"

8 changes: 7 additions & 1 deletion ports/botan/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ vcpkg_from_github(
HEAD_REF master
PATCHES
fix-generate-build-path.patch
embed-debug-info.patch
)

if(CMAKE_HOST_WIN32)
Expand Down Expand Up @@ -80,11 +81,16 @@ function(BOTAN_BUILD BOTAN_BUILD_TYPE)
"--distribution-info=vcpkg ${TARGET_TRIPLET}"
--prefix=${BOTAN_FLAG_PREFIX}
--with-pkg-config
--link-method=copy)
--link-method=copy
--with-debug-info)
if(CMAKE_HOST_WIN32)
list(APPEND configure_arguments ${BOTAN_MSVC_RUNTIME}${BOTAN_MSVC_RUNTIME_SUFFIX})
endif()

if(VCPKG_CXX_FLAGS)
list(APPEND configure_arguments --extra-cxxflags ${VCPKG_CXX_FLAGS})
endif()

if("-DBOTAN_AMALGAMATION=ON" IN_LIST FEATURE_OPTIONS)
list(APPEND configure_arguments --amalgamation)
endif()
Expand Down
2 changes: 1 addition & 1 deletion ports/botan/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "botan",
"version": "2.18.1",
"port-version": 7,
"port-version": 8,
"description": "A cryptography library written in C++11",
"homepage": "https://botan.randombit.net",
"license": "BSD-2-Clause",
Expand Down
5 changes: 5 additions & 0 deletions versions/b-/botan.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "267c31f3759881d233529d28ec78e2a0c8d1e9b4",
"version": "2.18.1",
"port-version": 8
},
{
"git-tree": "dfbd885e94b11d3b8074d96c92e810a0f1a7be7a",
"version": "2.18.1",
Expand Down
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -1126,7 +1126,7 @@
},
"botan": {
"baseline": "2.18.1",
"port-version": 7
"port-version": 8
},
"box2d": {
"baseline": "2.4.1",
Expand Down

0 comments on commit e407f1b

Please sign in to comment.