File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ if [[ "${PLATFORM}" = *-msvc ]]; then
94
94
95
95
DUMPBIN=" $( ls -1 " ${VS_INSTALL_PATH// \\ / \/ } " /VC/Tools/MSVC/* /bin/Hostx64/${MSVC_ARCH} /dumpbin.exe | tail -n 1) "
96
96
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} "
98
98
elif [[ " ${LIBCRYPTO_PATH} " = * .dylib ]]; then
99
99
nm --extern-only --defined-only -j " ${LIBCRYPTO_PATH} " | grep -v " ${REPO_ROOT} " | sort | uniq | filter_macho_symbols | filter_nm_symbols | filter_symbols > " ${SYMBOLS_FILE} "
100
100
elif [[ " ${LIBCRYPTO_PATH} " = * .so || " ${LIBCRYPTO_PATH} " = * .lib ]]; then
You can’t perform that action at this time.
0 commit comments