view doc/README-Cross.txt @ 542:a73a5cd50c19

- fix passing aggregate-by-val on x64/sysv: subaggr classification for aggr *arrays* was wrong (was problematic when there ware exactly 2 8bytes to be classified, potentially be passed via registers)
author Tassilo Philipp
date Mon, 02 May 2022 15:32:41 +0200
parents 3e629dc19168
children
line wrap: on
line source

Cross-compilation of dyncall with gcc
=====================================

Make sure cross-compile tools are installed and in your path, and set the
CC, AR and LD envvars, explicitly (where $PREFIX is arm-eabi, etc., depending
on the toolchain to be used):

  $ export CC=$PREFIX-gcc
  $ export AR=$PREFIX-ar
  $ export LD=$PREFIX-ld

Also set CXX if you want to build the tests:

  $ export CXX=$PREFIX-g++


Then, build dyncall - one way would be to simply use Makefile.embedded:

  $ make -f Makefile.embedded sun
  $ (cd test; make -f Makefile.embedded)