Uploaded image for project: 'Embedded Software & Tools'
  1. Embedded Software & Tools
  2. EXT_EP-7649

Errors of the linker due to the difference in version of CGT

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: High High
    • Code Generation Tools
    • CODEGEN-757
    • SDSCM00048289
    • Hide
      ARP32_1.0.0
       C6000_7.4.3
      Show
      ARP32_1.0.0  C6000_7.4.3
    • Hide
      ARP32_1.0.3
       C6000_7.4.7
      Show
      ARP32_1.0.3  C6000_7.4.7
    • Hide
      The problem can be avoided by using memory range names that are different from section names. For example, this linker command file may cause the error because "RAM" is both a memory range name and a section name:

      MEMORY {
          RAM :
      }

      SECTIONS {
          <other section directives>
         RAM : > RAM
      }

      But this one would not cause the error:

      MEMORY {
          RAM_MEM :
      }

      SECTIONS {
          <other section directives>
         RAM : > RAM_MEM
      }

      Also okay:

      MEMORY {
          RAM :
      }

      SECTIONS {
          <other section directives>
         RAM_SECT : > RAM
      }

      Show
      The problem can be avoided by using memory range names that are different from section names. For example, this linker command file may cause the error because "RAM" is both a memory range name and a section name: MEMORY {     RAM : } SECTIONS {     <other section directives>    RAM : > RAM } But this one would not cause the error: MEMORY {     RAM_MEM : } SECTIONS {     <other section directives>    RAM : > RAM_MEM } Also okay: MEMORY {     RAM : } SECTIONS {     <other section directives>    RAM_SECT : > RAM }

      Errors of the linker due to the difference in version of CGT

            syncuser TI User
            syncuser TI User
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved: