Introduction

필요한 것

Detailed Description

Binary tool chain

BUILD : x86 linux, TARGET : arm-wince-pe

gnuwince download and install

USAGE

#include <stdio.h>

int
main(int argc, char *argv[])
{
  FILE *fp;

  fp = fopen("/temp/hello.log", "wb");
  fprintf(fp, "hello, world!\n");
  fclose(fp);
}

Source tool chain

BUILD : x86 linux, TARGET : arm-wince-pe

binutils-2.15 install

./configure --target=arm-win-ce
make
make install

gcc-3.4.3 install

./configure --target=arm-win-ce
make
make install

USAGE

Reference


CategoryCpp

GnuCrossCompileToolChain (last edited 2005-03-22 06:27:28 by 210)