public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Daniel Vetter <daniel.vetter@ffwll.ch>
To: IGT development <igt-dev@lists.freedesktop.org>
Cc: Daniel Vetter <daniel.vetter@intel.com>
Subject: [igt-dev] [PATCH i-g-t 7/7] automake: Remove VC4/V3D build support
Date: Tue, 22 Jan 2019 14:42:15 +0100	[thread overview]
Message-ID: <20190122134215.28396-7-daniel.vetter@ffwll.ch> (raw)
In-Reply-To: <20190122134215.28396-1-daniel.vetter@ffwll.ch>

Eric is using meson nowadays.

Cc: Eric Anholt <eric@anholt.net>
Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
---
 configure.ac           |  9 ---------
 lib/Makefile.am        |  7 -------
 tests/Makefile.am      |  6 ------
 tests/Makefile.sources | 17 -----------------
 4 files changed, 39 deletions(-)

diff --git a/configure.ac b/configure.ac
index 915b4e7c0ccc..566167ee5e74 100644
--- a/configure.ac
+++ b/configure.ac
@@ -239,14 +239,6 @@ if test "x$NOUVEAU" = xyes; then
 fi
 AM_CONDITIONAL(HAVE_LIBDRM_NOUVEAU, [test "x$NOUVEAU" = xyes])
 
-AC_ARG_ENABLE(vc4, AS_HELP_STRING([--disable-vc4],
-	      [Enable building of vc4 tests (default: yes)]),
-	      [VC4=$enableval], [VC4=yes])
-if test "x$VC4" = xyes; then
-	AC_DEFINE(BUILD_VC4, 1, [Have vc4 support])
-fi
-AM_CONDITIONAL(BUILD_VC4, [test "x$VC4" = xyes])
-
 # enable debug symbols
 AC_ARG_ENABLE(debug,
 	      AS_HELP_STRING([--disable-debug],
@@ -310,7 +302,6 @@ AC_CONFIG_FILES([
 		 tools/Makefile
 		 tools/null_state_gen/Makefile
 		 tools/registers/Makefile
-		 include/Makefile
 		 overlay/Makefile
 		 ])
 
diff --git a/lib/Makefile.am b/lib/Makefile.am
index f0bf64592a5c..3b88e3397833 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -14,13 +14,6 @@ libigt_perf_la_SOURCES = \
 noinst_LTLIBRARIES = libintel_tools.la libigt_perf.la
 noinst_HEADERS = check-ndebug.h
 
-if BUILD_VC4
-    libintel_tools_la_SOURCES += 	\
-        igt_vc4.c			\
-        igt_vc4.h			\
-        vc4_packet.h
-endif
-
 if !HAVE_LIBDRM_INTEL
     libintel_tools_la_SOURCES += 	\
         stubs/drm/intel_bufmgr.c	\
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 6305707edf52..a4b811e09aef 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -10,12 +10,6 @@ if HAVE_LIBDRM_NOUVEAU
     TESTS_progs += $(NOUVEAU_TESTS)
 endif
 
-if BUILD_VC4
-    TESTS_progs += $(VC4_TESTS)
-endif
-
-TESTS_progs += $(V3D_TESTS)
-
 if HAVE_CHAMELIUM
 TESTS_progs += \
 	kms_chamelium \
diff --git a/tests/Makefile.sources b/tests/Makefile.sources
index baac7ae0069b..0de5154c5f4b 100644
--- a/tests/Makefile.sources
+++ b/tests/Makefile.sources
@@ -4,23 +4,6 @@ NOUVEAU_TESTS = \
 	prime_nv_test \
 	$(NULL)
 
-VC4_TESTS = \
-	vc4_create_bo \
-	vc4_dmabuf_poll \
-	vc4_lookup_fail \
-	vc4_label_bo \
-	vc4_purgeable_bo \
-	vc4_tiling \
-	vc4_wait_bo \
-	vc4_wait_seqno \
-	$(NULL)
-
-V3D_TESTS = \
-	v3d_get_bo_offset \
-	v3d_get_param \
-	v3d_mmap \
-	$(NULL)
-
 AMDGPU_TESTS = \
 	amdgpu/amd_basic \
 	amdgpu/amd_cs_nop \
-- 
2.20.1

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

  parent reply	other threads:[~2019-01-22 13:42 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-22 13:42 [igt-dev] [PATCH i-g-t 1/7] automake: Drop gtkdoc build remnants Daniel Vetter
2019-01-22 13:42 ` [igt-dev] [PATCH i-g-t 2/7] automake: Drop manpage build support Daniel Vetter
2019-01-22 13:42 ` [igt-dev] [PATCH i-g-t 3/7] automake: drop assembler/shader-debugger automake support Daniel Vetter
2019-01-22 13:42 ` [igt-dev] [PATCH i-g-t 4/7] automake: Point builders at meson Daniel Vetter
2019-01-22 13:42 ` [igt-dev] [PATCH i-g-t 5/7] automake: Drop runner build support Daniel Vetter
2019-01-22 13:42 ` [igt-dev] [PATCH i-g-t 6/7] automake: Ditch all EXTRA_DIST directives Daniel Vetter
2019-01-22 13:42 ` Daniel Vetter [this message]
2019-01-22 18:50   ` [igt-dev] [PATCH i-g-t 7/7] automake: Remove VC4/V3D build support Eric Anholt
2019-01-23 11:38     ` Daniel Vetter
2019-01-23 11:54       ` Jani Nikula
2019-01-23 12:49   ` [igt-dev] [PATCH i-g-t] " Daniel Vetter
2019-01-22 14:32 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/7] automake: Drop gtkdoc build remnants Patchwork
2019-01-22 17:11 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2019-01-23 11:10 ` [igt-dev] [PATCH i-g-t 1/7] " Petri Latvala
2019-01-23 11:42   ` Daniel Vetter
2019-01-23 12:15     ` Petri Latvala
2019-01-29 10:11       ` Daniel Vetter
2019-01-23 13:19 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/7] automake: Drop gtkdoc build remnants (rev2) Patchwork
2019-01-23 15:32 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190122134215.28396-7-daniel.vetter@ffwll.ch \
    --to=daniel.vetter@ffwll.ch \
    --cc=daniel.vetter@intel.com \
    --cc=igt-dev@lists.freedesktop.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox