pan/clc: Build for v14

Reviewed-by: Lars-Ivar Hesselberg Simonsen <lars-ivar.simonsen@arm.com>
This commit is contained in:
Marc Alcala Prieto 2026-02-11 15:48:47 +01:00
parent 7f1bd35a36
commit 6bd5cb1728
4 changed files with 6 additions and 2 deletions

View file

@ -275,7 +275,7 @@ main(int argc, const char **argv)
unsigned target_arch = atoi(target_arch_str);
if (target_arch < 4 || target_arch > 13) {
if (target_arch < 4 || target_arch > 14) {
fprintf(stderr, "Unsupported target arch %d\n", target_arch);
return 1;
}

View file

@ -28,6 +28,8 @@
#include "libpan_v12.h"
#elif (PAN_ARCH == 13)
#include "libpan_v13.h"
#elif (PAN_ARCH == 14)
#include "libpan_v14.h"
#else
#error "Unsupported architecture for libpan"
#endif

View file

@ -26,6 +26,8 @@
#include "libpan_shaders_v12.h"
#elif (PAN_ARCH == 13)
#include "libpan_shaders_v13.h"
#elif (PAN_ARCH == 14)
#include "libpan_shaders_v14.h"
#else
#error "Unsupported architecture for libpan"
#endif

View file

@ -11,7 +11,7 @@ libpan_shader_files = files(
idep_libpan_per_arch = {}
foreach ver : ['4', '5', '6', '7', '9', '10', '12', '13']
foreach ver : ['4', '5', '6', '7', '9', '10', '12', '13', '14']
libpan_spv = custom_target(
input : libpan_shader_files,
output : 'libpan_v' + ver + '.spv',