Notice: We have migrated to GitLab launching 2024-05-01 see here: https://gitlab.rtems.org/

Changes between Initial Version and Version 1 of Ticket #4683


Ignore:
Timestamp:
07/21/22 05:52:08 (22 months ago)
Author:
Chris Johns
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #4683 – Description

    initial v1  
    11RTEMS 5 added `-ffunction-sections -fdata-sections` to the target flags for BSPs in an architecture that supports code and data sections.
    22
    3 Some EPICS code such as the [https://github.com/epics-base/epics-base/blob/7.0/modules/libcom/src/osi/os/RTEMS-score/osdTime.cpp#L148 NTP have code]. The data sections means the `done` variable is not linked into the executable when a function in the module is referenced.
     3Some EPICS code such as the [https://github.com/epics-base/epics-base/blob/7.0/modules/libcom/src/osi/os/RTEMS-score/osdTime.cpp#L148 NTP] have code the linker does not link into the final executable. The data sections means the `done` variable is not linked into the executable when a function in the module is referenced.
    44
    55RTEMS 6 only exports the ABI flags and any internal build flags are not exported.