borland_prefix.hpp 1002 B

123456789101112131415161718192021222324252627
  1. // (C) Copyright John Maddock 2003.
  2. // Use, modification and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. // for C++ Builder the following options effect the ABI:
  6. //
  7. // -b (on or off - effect emum sizes)
  8. // -Vx (on or off - empty members)
  9. // -Ve (on or off - empty base classes)
  10. // -aX (alignment - 5 options).
  11. // -pX (Calling convention - 4 options)
  12. // -VmX (member pointer size and layout - 5 options)
  13. // -VC (on or off, changes name mangling)
  14. // -Vl (on or off, changes struct layout).
  15. // In addition the following warnings are sufficiently annoying (and
  16. // unfixable) to have them turned off by default:
  17. //
  18. // 8027 - functions containing [for|while] loops are not expanded inline
  19. // 8026 - functions taking class by value arguments are not expanded inline
  20. #pragma nopushoptwarn
  21. # pragma option push -a8 -Vx- -Ve- -b- -pc -Vmv -VC- -Vl- -w-8027 -w-8026