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

Location:
EcnlProtoTool/trunk/tcc-0.9.27
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • EcnlProtoTool/trunk/tcc-0.9.27/libtcc.h

    r321 r331  
    2828
    2929/* set options as from command line (multiple supported) */
    30 LIBTCCAPI int tcc_set_options(TCCState *s, const char *str);
     30LIBTCCAPI void tcc_set_options(TCCState *s, const char *str);
    3131
    3232/*****************************/
     
    5959/* set output type. MUST BE CALLED before any compilation */
    6060LIBTCCAPI int tcc_set_output_type(TCCState *s, int output_type);
    61 #define TCC_OUTPUT_MEMORY   0 /* output will be run in memory (default) */
    62 #define TCC_OUTPUT_EXE      1 /* executable file */
    63 #define TCC_OUTPUT_DLL      2 /* dynamic library */
    64 #define TCC_OUTPUT_OBJ      3 /* object file */
    65 #define TCC_OUTPUT_PREPROCESS 4 /* only preprocess (used internally) */
     61#define TCC_OUTPUT_MEMORY   1 /* output will be run in memory (default) */
     62#define TCC_OUTPUT_EXE      2 /* executable file */
     63#define TCC_OUTPUT_DLL      3 /* dynamic library */
     64#define TCC_OUTPUT_OBJ      4 /* object file */
     65#define TCC_OUTPUT_PREPROCESS 5 /* only preprocess (used internally) */
    6666
    6767/* equivalent to -Lpath option */
Note: See TracChangeset for help on using the changeset viewer.