vxworks-dummy.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* Dummy definitions of VxWorks-related macros
  2. Copyright (C) 2007-2015 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. */
  20. #ifndef TARGET_VXWORKS
  21. #define TARGET_VXWORKS 0
  22. #endif
  23. /* True if generating code for a VxWorks RTP. */
  24. #ifndef TARGET_VXWORKS_RTP
  25. #define TARGET_VXWORKS_RTP false
  26. #endif
  27. /* The symbol that points to an RTP's table of GOTs. */
  28. #define VXWORKS_GOTT_BASE (gcc_unreachable (), "")
  29. /* The symbol that holds the index of the current module's GOT in
  30. VXWORKS_GOTT_BASE. */
  31. #define VXWORKS_GOTT_INDEX (gcc_unreachable (), "")