Ignore:
Timestamp:
Apr 5, 2019, 9:26:53 PM (5 years ago)
Author:
coas-nagasima
Message:

mbed関連を更新
シリアルドライバをmbedのHALを使うよう変更
ファイルディスクリプタの処理を更新

Location:
asp3_tinet_ecnl_arm/trunk/musl-1.1.18
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • asp3_tinet_ecnl_arm/trunk/musl-1.1.18/.cproject

    r364 r374  
    1717                                        <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
    1818                                        <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
    19                                         <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
    2019                                        <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/>
    2120                                        <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
     
    122121                                                <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="arch"/>
    123122                                                <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="crt"/>
    124                                                 <entry flags="VALUE_WORKSPACE_PATH" kind="sourcePath" name="src"/>
     123                                                <entry excluding="malloc" flags="VALUE_WORKSPACE_PATH" kind="sourcePath" name="src"/>
    125124                                        </sourceEntries>
    126125                                </configuration>
     
    144143                                        <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
    145144                                        <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
    146                                         <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
    147145                                        <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/>
    148146                                        <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
     
    232230                                                <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="arch"/>
    233231                                                <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="crt"/>
    234                                                 <entry flags="VALUE_WORKSPACE_PATH" kind="sourcePath" name="src"/>
     232                                                <entry excluding="malloc" flags="VALUE_WORKSPACE_PATH" kind="sourcePath" name="src"/>
    235233                                        </sourceEntries>
    236234                                </configuration>
     
    261259        </storageModule>
    262260        <storageModule moduleId="org.eclipse.cdt.internal.ui.text.commentOwnerProjectMappings"/>
     261        <storageModule moduleId="org.eclipse.cdt.make.core.buildtargets"/>
    263262</cproject>
  • asp3_tinet_ecnl_arm/trunk/musl-1.1.18/crt/crt1.c

    r352 r374  
    11#include <features.h>
    22
    3 #define START "_start"
     3#define START "musl_start"
    44
    55#include "crt_arch.h"
     
    1111        void (*)(), void(*)(), void(*)());
    1212
    13 void _start_c(long *p)
     13void musl_start_c(long *p)
    1414{
    1515        int argc = p[0];
  • asp3_tinet_ecnl_arm/trunk/musl-1.1.18/src/stdio/__stdio_write.c

    r352 r374  
    3232                iov[0].iov_len -= cnt;
    3333        }
     34        return -1;
    3435}
Note: See TracChangeset for help on using the changeset viewer.