Skip to content
Snippets Groups Projects
Commit b52d3574 authored by James Almer's avatar James Almer
Browse files

configure: check for strtoull on msvc

parent 55affd95
No related branches found
No related tags found
No related merge requests found
...@@ -6284,6 +6284,7 @@ __declspec($_restrict) void* foo(int); ...@@ -6284,6 +6284,7 @@ __declspec($_restrict) void* foo(int);
EOF EOF
fi fi
check_func strtoll || add_cflags -Dstrtoll=_strtoi64 check_func strtoll || add_cflags -Dstrtoll=_strtoi64
check_func strtoull || add_cflags -Dstrtoull=_strtoui64
# the new SSA optimzer in VS2015 U3 is mis-optimizing some parts of the code # the new SSA optimzer in VS2015 U3 is mis-optimizing some parts of the code
# this flag should be re-checked on newer compiler releases and put under a # this flag should be re-checked on newer compiler releases and put under a
# version check once its fixed # version check once its fixed
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment