From fb1c504568057d8e908a8c04ae55949883b3d7a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20S=C3=B6ntgen?= Date: Fri, 12 Jan 2018 14:18:47 +0100 Subject: [PATCH] gpu: the Intel multiplexer is only for x86_64 Require x86_64 because memory/adress space limitations on x86_32 restrict the use-cases on such a platform anyway. Doing that, we can also assume that memory adresses are always 64bit long and do not have to handle 32bit adresses. --- repos/os/src/drivers/gpu/intel/target.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/os/src/drivers/gpu/intel/target.mk b/repos/os/src/drivers/gpu/intel/target.mk index 5600a10ef6..c6ebce2cf1 100644 --- a/repos/os/src/drivers/gpu/intel/target.mk +++ b/repos/os/src/drivers/gpu/intel/target.mk @@ -2,6 +2,6 @@ TARGET = intel_gpu_drv SRC_CC = main.cc mmio_dump.cc LIBS = base -REQUIRES = x86 +REQUIRES = x86_64 INC_DIR += $(PRG_DIR)