WATCOM_RUNTIME_LIBRARY-VALUES.txt 868 B

1234567891011121314151617181920
  1. ``SingleThreaded``
  2. Compile without additional flags to use a single-threaded
  3. statically-linked runtime library.
  4. ``SingleThreadedDLL``
  5. Compile with ``-br`` or equivalent flag(s) to use a single-threaded
  6. dynamically-linked runtime library. This is not available for Linux
  7. targets.
  8. ``MultiThreaded``
  9. Compile with ``-bm`` or equivalent flag(s) to use a multi-threaded
  10. statically-linked runtime library.
  11. ``MultiThreadedDLL``
  12. Compile with ``-bm -br`` or equivalent flag(s) to use a multi-threaded
  13. dynamically-linked runtime library. This is not available for Linux
  14. targets.
  15. The value is ignored on non-Watcom compilers but an unsupported value will
  16. be rejected as an error when using a compiler targeting the Watcom ABI.
  17. The value may also be the empty string (``""``) in which case no runtime
  18. library selection flag will be added explicitly by CMake.