mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 21:29:08 +08:00
3ef62a2a76
* add omniorb port * v db * fix stuff i didn't test * try running without pythonpath on linux * dont care to fix osx * format manifest wants it braced. * v db * use & instead of , * v db * also disallow x86 on windows * v db * Apply suggestions from code review Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> * format * v db * cleanup * v db --------- Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
19 lines
814 B
Diff
19 lines
814 B
Diff
diff --git a/mk/win32.mk b/mk/win32.mk
|
|
index fc179563e..15903919a 100644
|
|
--- a/mk/win32.mk
|
|
+++ b/mk/win32.mk
|
|
@@ -264,12 +264,12 @@ endef
|
|
define MakeCXXExportSymbolDefinitionFile
|
|
symrefdir=$${debug:+debug}; \
|
|
symreflib=$(SharedLibrarySymbolRefLibraryTemplate); \
|
|
if [ ! -f $$symreflib ]; then echo "Cannot find reference static library $$symreflib"; return 1; fi; \
|
|
set -x; \
|
|
echo "LIBRARY $$dllbase" > $$defname; \
|
|
echo "VERSION $$version" >> $$defname; \
|
|
echo "EXPORTS" >> $$defname; \
|
|
-DUMPBIN.EXE /SYMBOLS $$symreflib | \
|
|
+DUMPBIN.EXE $$symreflib -SYMBOLS | \
|
|
egrep '^[^ ]+ +[^ ]+ +SECT[^ ]+ +[^ ]+ +\(\) +External +\| +\?[^ ]*|^[^ ]+ +[^ ]+ +SECT[^ ]+ +[^ ]+ +External +\| +\?[^?][^ ]*'|\
|
|
egrep -v 'deleting destructor[^(]+\(unsigned int\)' | \
|
|
egrep -v 'anonymous namespace' | \
|