summaryrefslogtreecommitdiff
path: root/win
diff options
context:
space:
mode:
authorVladislav Vaintroub <wlad@montyprogram.com>2012-12-21 15:17:26 +0100
committerVladislav Vaintroub <wlad@montyprogram.com>2012-12-21 15:17:26 +0100
commit7885b38cbb22df3c2d22a57ecb8993d540a36652 (patch)
tree1a4ab4f91409c1a60cb5d3dccc938f965b41ed80 /win
parentc4b35f92798f8612edc2d197ecf8a283a9269436 (diff)
downloadmariadb-git-7885b38cbb22df3c2d22a57ecb8993d540a36652.tar.gz
Support VS2012. Exclude compiler-defined symbols from being exported by mysqld.exe
Diffstat (limited to 'win')
-rw-r--r--win/create_def_file.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/win/create_def_file.js b/win/create_def_file.js
index b6946ac85f1..79ccf1ba817 100644
--- a/win/create_def_file.js
+++ b/win/create_def_file.js
@@ -169,6 +169,7 @@ function ScrubSymbol(symbol)
function IsCompilerDefinedSymbol(symbol)
{
return ((symbol.indexOf("__real@") != -1) ||
+ (symbol.indexOf("_xmm@") != -1) ||
(symbol.indexOf("_RTC_") != -1) ||
(symbol.indexOf("??_C@_") != -1) ||
(symbol.indexOf("??_R") != -1) ||