diff options
author | Daniel Golle <daniel@makrotopia.org> | 2016-08-19 17:49:09 +0200 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2016-08-19 17:53:50 +0200 |
commit | c08651226f5645204f91f79d247801033f6015d1 (patch) | |
tree | 865b9e6d09a480afc2c209f3d973a2e636b3778d /toolchain/Config.in | |
parent | f71f7f0df15a78a5793b8f8cdc6abff7563245e3 (diff) | |
download | upstream-c08651226f5645204f91f79d247801033f6015d1.tar.gz upstream-c08651226f5645204f91f79d247801033f6015d1.tar.bz2 upstream-c08651226f5645204f91f79d247801033f6015d1.zip |
toolchain: include yasm in x86 toolchain
Some libraries require yasm to build with in-line assembly for x86
targets.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Diffstat (limited to 'toolchain/Config.in')
-rw-r--r-- | toolchain/Config.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/toolchain/Config.in b/toolchain/Config.in index a6aa84db75..7cc51a1bb1 100644 --- a/toolchain/Config.in +++ b/toolchain/Config.in @@ -206,6 +206,14 @@ comment "Compiler" source "toolchain/gcc/Config.in" +config YASM + bool + depends on ( i386 || x86_64 ) + prompt "Build yasm" if TOOLCHAINOPTS + default y + help + Enable if you want to build yasm + comment "C Library" depends on TOOLCHAINOPTS |