app_smem.ld 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* SPDX-License-Identifier: Apache-2.0 */
  2. /*
  3. * This hackish way of including files is due to CMake issues:
  4. * https://gitlab.kitware.com/cmake/cmake/issues/11985
  5. * https://gitlab.kitware.com/cmake/cmake/issues/13718
  6. *
  7. * When using the "Unix Makefiles" generator, CMake simply
  8. * greps for "#include" to generate dependency list.
  9. * So if doing it normally, both files are being included
  10. * in the dependency list. This creates weird dependency
  11. * issue:
  12. *
  13. * 1. Using A.ld to create a linker script A.cmd.
  14. * 2. Using A.cmd to generate A_prebuilt.elf.
  15. * 3. Using A_prebuilt.elf to create B.ld.
  16. * 4. Creating B.cmd with B.ld.
  17. * 5. Creating B_prebuilt.elf using B.cmd.
  18. *
  19. * Since the dependency list of A.cmd contains both
  20. * A.ld and B.ld, when make is invoked again, B.ld
  21. * is newer than A.cmd so everything from this point on
  22. * gets rebuilt. In order to break this cycle, this
  23. * hackish needs to be used since CMake does not parse
  24. * macros, and thus these will not appear in
  25. * the dependency list. The dependencies should then be
  26. * put in CMakeLists.txt instead.
  27. *
  28. * Note: Ninja generator does not suffer from this issue.
  29. */
  30. #ifdef LINKER_APP_SMEM_UNALIGNED
  31. #define APP_SMEM_LD <app_smem_unaligned.ld>
  32. #else
  33. #define APP_SMEM_LD <app_smem_aligned.ld>
  34. #endif
  35. #include APP_SMEM_LD
  36. #undef APP_SMEM_LD