msvc_win32-any_win32-x86.py 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. ############################################################################
  2. # Copyright 2016 Intel Corporation
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. ############################################################################
  16. """Intel win32 compiler configurations release
  17. """
  18. from parts.config import ConfigValues, configuration
  19. def map_default_version(env):
  20. return env['MSVC_VERSION']
  21. config = configuration(map_default_version)
  22. config.VersionRange("7-*",
  23. append=ConfigValues(
  24. CCFLAGS=['/MP',
  25. '/GS',
  26. '/W4',
  27. '/wd4127', # allow while (0)
  28. '/wd4592', # VS2015U1 limitation
  29. #'/wd4366', # ok unaligned &
  30. #'/wd4204', # allow x= {a,b}
  31. #'/wd4221', # allow x = {&y}
  32. '/Gy',
  33. '/Zc:wchar_t',
  34. '/Z7',
  35. '/O2',
  36. '/fp:precise',
  37. '/WX',
  38. '/Zc:forScope',
  39. '/Gd',
  40. '/Oi',
  41. '/MT',
  42. '/nologo'],
  43. CXXFLAGS=['/EHsc',
  44. '/GR'],
  45. LINKFLAGS=['/LTCG',
  46. '/WX',
  47. '/SAFESEH',
  48. '/NXCOMPAT',
  49. '/DYNAMICBASE',
  50. '/nologo'],
  51. CPPDEFINES=['NDEBUG']
  52. )
  53. )