Changeset 951f6b9e in mainline for tools/toolchain.sh


Ignore:
Timestamp:
2017-05-06T17:05:04Z (7 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
73db198
Parents:
b14d9f9
Message:

Allow building only toolchains needed for developing HelenOS

Use ./toolchain.sh essential to build only targets for which HelenOS has
a build profile.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/toolchain.sh

    rb14d9f9 r951f6b9e  
    163163        echo " sparc64    SPARC V9"
    164164        echo " all        build all targets"
     165        echo " essential  build only targets currently needed for HelenOS development"
    165166        echo " parallel   same as 'all', but all in parallel"
    166167        echo " 2-way      same as 'all', but 2-way parallel"
     
    594595                build_target "ppc64"
    595596                build_target "riscv64"
     597                build_target "sparc64"
     598                ;;
     599        "essential")
     600                prepare
     601                build_target "amd64"
     602                build_target "arm32"
     603                build_target "ia32"
     604                build_target "ia64"
     605                build_target "mips32"
     606                build_target "mips32eb"
     607                build_target "ppc32"
    596608                build_target "sparc64"
    597609                ;;
Note: See TracChangeset for help on using the changeset viewer.