You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 line
1.6KB

  1. /* Dummy definitions of VxWorks-related macros
  2. Copyright (C) 2007-2020 Free Software Foundation, Inc.
  3. This file is part of GCC.
  4. GCC is free software; you can redistribute it and/or modify it under
  5. the terms of the GNU General Public License as published by the Free
  6. Software Foundation; either version 3, or (at your option) any later
  7. version.
  8. GCC is distributed in the hope that it will be useful, but WITHOUT ANY
  9. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  11. for more details.
  12. Under Section 7 of GPL version 3, you are granted additional
  13. permissions described in the GCC Runtime Library Exception, version
  14. 3.1, as published by the Free Software Foundation.
  15. You should have received a copy of the GNU General Public License and
  16. a copy of the GCC Runtime Library Exception along with this program;
  17. see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
  18. <http://www.gnu.org/licenses/>. */
  19. /* True if we're targeting VxWorks, VxWorks7 and/or 64bit. */
  20. #ifndef TARGET_VXWORKS
  21. #define TARGET_VXWORKS 0
  22. #endif
  23. #ifndef TARGET_VXWORKS7
  24. #define TARGET_VXWORKS7 0
  25. #endif
  26. #ifndef TARGET_VXWORKS64
  27. #define TARGET_VXWORKS64 0
  28. #endif
  29. /* True if generating code for a VxWorks RTP. */
  30. #ifndef TARGET_VXWORKS_RTP
  31. #define TARGET_VXWORKS_RTP false
  32. #endif
  33. /* The symbol that points to an RTP's table of GOTs. */
  34. #define VXWORKS_GOTT_BASE (gcc_unreachable (), "")
  35. /* The symbol that holds the index of the current module's GOT in
  36. VXWORKS_GOTT_BASE. */
  37. #define VXWORKS_GOTT_INDEX (gcc_unreachable (), "")