mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
dcfd8cfd4a
libabigail is currenly only validating symbol presence and version information in ci. We should also be validating function parameters, types, etc. To do this we need to build the library with -g so the dwarf information is available for libabigail to interrogate while we're at it, also add a script to re-generate the xml that abidiff uses for comparison during ci runs, to make updates easier Fixes #22712 Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22713)
6 lines
143 B
Bash
Executable File
6 lines
143 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
abidw --out-file ./.github/workflows/libcrypto-abi.xml libcrypto.so
|
|
abidw --out-file ./.github/workflows/libssl-abi.xml libssl.so
|
|
|