Home | History | Annotate | Download | only in tools

Lines Matching full:toolchain

17 #  This shell script is used to rebuild the gcc and toolchain binaries
26 This script allows you to generate a 'wrapper toolchain', i.e. a set of
27 simple scripts that act as toolchain binaries (e.g. my-cc, my-c++, my-ld,
28 etc...) but call another installed toolchain instead, possibly with additional
31 For example, imagine we want a toolchain that generates 32-bit binaries while
34 $PROGNAME --cflags="-m32" --cxxflags="-m32" --ldflags="-m32" /tmp/my-toolchain
38 /tmp/my-toolchain/my-cc
39 /tmp/my-toolchain/my-gcc
40 /tmp/my-toolchain/my-c++
41 /tmp/my-toolchain/my-g++
42 /tmp/my-toolchain/my-ld
50 - The 'destination toolchain' is the one that will be called by the
56 - The 'source prefix' is the prefix added to the generated toolchain scripts,
68 register_var_option "--src-prefix=<prefix>" SRC_PREFIX "Set source toolchain prefix"
71 register_var_option "--dst-prefix=<prefix>" DST_PREFIX "Set destination toolchain prefix"
176 log "Generating toolchain wrappers in: $DST_DIR"