LOGIN   :::   RECOVER PASS   :::   GET ACCOUNT    
Browse
  • Projects
  • Code (CVS)
  • Forums
  • News
  • Articles
  • Polls
  •  
    OpenCores
  • FAQ
  • CVS HowTo
  • Mission
  • Media
  • Tools
  • Advertise
  • Mirrors
  • Logos
  • Contact us
  • Find Resources
  • Job Opportunity
  •  
    Tools
  • Search
      
  • Download Cores (CVSGet)
  •  
    More
  • Wishbone
  • Perlilog
  • EDA tools
  • OpenTech CD
  •  
    Navigation: All forums > Openrisc > Message List > Message Post

    Message

    Reply | Reply all
    Date Prev | Date Next | Thread Prev | Thread Next Date Index | Thread Index

    From: Will Partain<will.partain@v...>
    Date: Wed May 19 13:16:36 CEST 2004
    Subject: [openrisc] cbasic problem address 0x38 of cbasic-nocache-O2.or32
    Top
    jfafinski@h... writes:

    > I try to run orp/orp_soc/sw/cbasic but I still get this error :
    > or32-uclinux-ld: warning: no memory region specified for section
    > `.rodata.str1.1'
    > or32-uclinux-ld: address 0x38 of cbasic-nocache-O2.or32 section .dummy
    > is not within region flash

    On the `.rodata.str1.1' thing: there's a mismatch between
    the section names your (cross-)compiler is spitting out and
    what the linker script (orp.ld) is expecting. In the latter,
    trying changing...

    .rodata :
    {
    *(.rodata)
    } > flash

    to

    .rodata.str1.1 :
    {
    *(.rodata.str1.1)
    } > flash

    Worked for me :-)

    Will

    ReferenceAuthor
    [openrisc] cbasic problem address 0x38 of cbasic-nocache-O2.or32Jfafinski

     
    Copyright (c) 1999 OPENCORES.ORG. All rights reserved.