Skip to content

Commit baa574b

Browse files
aws-lc-sys-bindings-generatorjustsmth
authored andcommitted
Symbols for i686-unknown-linux-gnu
1 parent 83cadd8 commit baa574b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/build/collect_symbols.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ if [[ "${PLATFORM}" = *-msvc ]]; then
9494

9595
DUMPBIN="$(ls -1 "${VS_INSTALL_PATH//\\/\/}"/VC/Tools/MSVC/*/bin/Hostx64/${MSVC_ARCH}/dumpbin.exe | tail -n 1)"
9696
PATH="$(dirname "${DUMPBIN/C:/\/c}")":"${PATH}"
97-
dumpbin //EXPORTS //SYMBOLS "${LIBCRYPTO_PATH}" | grep External | grep SECT1 | sed -e 's/.*External\s*|\s*\(.*\)$/\1/'| egrep '^\w' | sort | uniq | filter_symbols >"${SYMBOLS_FILE}"
97+
dumpbin //EXPORTS //SYMBOLS "${LIBCRYPTO_PATH}" | grep External | grep SECT1 | sed -e 's/.*External\s*|\s*\(.*\)$/\1/'| grep -E '^\w' | sort | uniq | filter_symbols >"${SYMBOLS_FILE}"
9898
elif [[ "${LIBCRYPTO_PATH}" = *.dylib ]]; then
9999
nm --extern-only --defined-only -j "${LIBCRYPTO_PATH}" | grep -v "${REPO_ROOT}" | sort | uniq | filter_macho_symbols | filter_nm_symbols | filter_symbols >"${SYMBOLS_FILE}"
100100
elif [[ "${LIBCRYPTO_PATH}" = *.so || "${LIBCRYPTO_PATH}" = *.lib ]]; then

0 commit comments

Comments
 (0)