diff options
author | Valentin Korenblit <valentin.korenblit@smile.fr> | 2018-04-04 18:31:19 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-04-04 22:52:04 +0200 |
commit | 29f04d7934b46502f856bb84f91b74b0d8c066d3 (patch) | |
tree | d3f4fe39577ad0e5a48acf95c552508517719036 /package/llvm/Config.in | |
parent | a098636a6b65dd2ca08f29fd6085a46d2b491df0 (diff) | |
download | buildroot-29f04d7934b46502f856bb84f91b74b0d8c066d3.tar.gz buildroot-29f04d7934b46502f856bb84f91b74b0d8c066d3.zip |
package/llvm: enable AMDGPU
The AMDGPU backend provides ISA code generation for AMD GPU's,
starting with the R600 family up until the current GCN families.
It should not be confused with the AMDGPU Linux kernel DRM driver.
For more info: https://llvm.org/docs/AMDGPUUsage.html
Signed-off-by: Valentin Korenblit <valentin.korenblit@smile.fr>
Tested-by: Jérôme Oufella <jerome.oufella@savoirfairelinux.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'package/llvm/Config.in')
-rw-r--r-- | package/llvm/Config.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/package/llvm/Config.in b/package/llvm/Config.in index 408fde2e39..70f73f4858 100644 --- a/package/llvm/Config.in +++ b/package/llvm/Config.in @@ -24,6 +24,16 @@ config BR2_PACKAGE_LLVM http://llvm.org +if BR2_PACKAGE_LLVM + +config BR2_PACKAGE_LLVM_AMDGPU + bool "AMDGPU backend" + help + Build AMDGPU target. Select this option if you are going + to install mesa3d with llvm and use Gallium Radeon driver. + +endif + comment "llvm needs a toolchain w/ threads, C++, gcc >= 4.8, host gcc >= 4.8" depends on BR2_PACKAGE_LLVM_ARCH_SUPPORTS depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP || \ |