linker-tool.h 654 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Copyright (c) 2013-2014, Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Toolchain-agnostic linker defs
  9. *
  10. * This header file is used to automatically select the proper set of macro
  11. * definitions (based on the toolchain) for the linker script.
  12. */
  13. #ifndef ZEPHYR_INCLUDE_LINKER_LINKER_TOOL_H_
  14. #define ZEPHYR_INCLUDE_LINKER_LINKER_TOOL_H_
  15. #if defined(_LINKER)
  16. #if defined(__GCC_LINKER_CMD__)
  17. #include <linker/linker-tool-gcc.h>
  18. #elif defined(__MWDT_LINKER_CMD__)
  19. #include <linker/linker-tool-mwdt.h>
  20. #else
  21. #error "Unknown toolchain"
  22. #endif
  23. #endif
  24. #endif /* ZEPHYR_INCLUDE_LINKER_LINKER_TOOL_H_ */