Ignore:
Timestamp:
Jan 21, 2018, 12:10:09 AM (6 years ago)
Author:
coas-nagasima
Message:

prototoolに関連するプロジェクトをnewlibからmuslを使うよう変更・更新
ntshellをnewlibの下位の実装から、muslのsyscallの実装に変更・更新
以下のOSSをアップデート
・mruby-1.3.0
・musl-1.1.18
・onigmo-6.1.3
・tcc-0.9.27
以下のOSSを追加
・openssl-1.1.0e
・curl-7.57.0
・zlib-1.2.11
以下のmrbgemsを追加
・iij/mruby-digest
・iij/mruby-env
・iij/mruby-errno
・iij/mruby-iijson
・iij/mruby-ipaddr
・iij/mruby-mock
・iij/mruby-require
・iij/mruby-tls-openssl

File:
1 edited

Legend:

Unmodified
Added
Removed
  • EcnlProtoTool/trunk/asp3_dcre/mbed/targets/cmsis/TARGET_RENESAS/TARGET_RZ_A1H/TOOLCHAIN_GCC_ARM/RZA1H.ld

    r270 r331  
    1313  SFLASH (rx) : ORIGIN = 0x18004000, LENGTH = 0x07FFC000
    1414  L_TTB (rw)  : ORIGIN = 0x20000000, LENGTH = 0x00004000
    15   RAM (rwx) : ORIGIN = 0x20020000, LENGTH = 0x00700000
    16   RAM_NC (rwx) : ORIGIN = 0x20900000, LENGTH = 0x00100000
     15  RAM (rw) : ORIGIN = 0x20004000, LENGTH = 0x000FC000
     16  RAM_CMD (rwx) : ORIGIN = 0x20100000, LENGTH = 0x00800000
     17  RAM_NC (rw) : ORIGIN = 0x20900000, LENGTH = 0x00100000
    1718}
    1819
     
    155156        PROVIDE (__init_array_end = .);
    156157
    157 
    158158        . = ALIGN(4);
    159159        /* finit data */
     
    169169    } > RAM
    170170
    171    
    172171    .bss ALIGN(0x400):
    173172    {
     
    180179    } > RAM
    181180
    182    
     181    /* .stack_dummy section doesn't contains any symbols. It is only
     182     * used for linker to calculate size of stack sections, and assign
     183     * values to stack symbols later */
     184    .stack_dummy :
     185    {
     186        *(.stack)
     187    } > RAM
     188
    183189    .heap :
    184190    {
     
    189195    } > RAM
    190196
    191     /* .stack_dummy section doesn't contains any symbols. It is only
    192      * used for linker to calculate size of stack sections, and assign
    193      * values to stack symbols later */
    194     .stack_dummy :
    195     {
    196         *(.stack)
    197     } > RAM
     197    .cmd_area :
     198    {
     199        __CmdBase = .;
     200        Image$$CMD_AREA$$Base = .;
     201        . = . + LENGTH(RAM_CMD);
     202        __CmdLimit = .;
     203        Image$$CMD_AREA$$Limit = .;
     204    } > RAM_CMD
    198205
    199206    __etext2 = __etext + SIZEOF(.data);
Note: See TracChangeset for help on using the changeset viewer.