main_weak.c 1005 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * Copyright (c) 2010-2014 Wind River Systems, Inc.
  3. * Copyright (c) 2021 Nordic Semiconductor ASA
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. /* Linkers may treat weak functions differently if they are located within
  8. * the same object that calls the symbol or not.
  9. *
  10. * For example, when using armlink, then if the weak symbol is inside the object
  11. * referring to it the weak symbol will be used. This will result in the symbol
  12. * being multiply defined because both the weak and strong symbols are used.
  13. *
  14. * To GNU ld, it doesn't matter if the weak symbol is placed in the same object
  15. * which uses the weak symbol. GNU ld will always link to the strong version.
  16. *
  17. * Having the weak main symbol in an independent file ensures that it will be
  18. * correctly treated by multiple linkers.
  19. */
  20. #include <kernel_internal.h>
  21. /* LCOV_EXCL_START */
  22. #ifndef __UVISION_VERSION
  23. int __weak main(void)
  24. {
  25. /* NOP default main() if the application does not provide one. */
  26. arch_nop();
  27. return 0;
  28. }
  29. #endif