config.frag

来自「java virtual machince kaffe」· FRAG 代码 · 共 26 行

FRAG
26
字号
## sh/Linux configuration.## Written by Kiyo Inaba <k-inaba@mxb.mesh.ne.jp>, 2002;#	to support cross compilation and endian.#Khost_cpu=shKhost_os=linuxKAFFE_CFLAGS="-g"if [ "$cross_compiling" = yes ]; then# In cross environment, following values may not be detected automatically.  ac_cv_alignmentof_voidp=${ac_cv_alignmentof_voidp='4'}  ac_cv_sizeof___int64=${ac_cv_sizeof___int64='0'}  ac_cv_sizeof_int=${ac_cv_sizeof_int='4'}  ac_cv_sizeof_long=${ac_cv_sizeof_long='4'}  ac_cv_sizeof_long_long=${ac_cv_sizeof_long_long='8'}  ac_cv_sizeof_short=${ac_cv_sizeof_short='2'}  ac_cv_sizeof_voidp=${ac_cv_sizeof_voidp='4'}# Endian can be set by check the name of compiler, ugly?  if [ "$CC" = 'sh3eb-linux-gcc' ]; then    ac_cv_c_bigendian=${ac_cv_c_bigendian='yes'}  else    ac_cv_c_bigendian=${ac_cv_c_bigendian='no'}  fifi

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?