All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t 0/2] Changes for typical arm64 cross-compile
@ 2021-10-15 20:32 Casey Bowman
  2021-10-15 20:32 ` [igt-dev] [PATCH i-g-t 1/2] Alter arm64 cross compile pkg-config library selections Casey Bowman
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: Casey Bowman @ 2021-10-15 20:32 UTC (permalink / raw)
  To: igt-dev
  Cc: lucas.demarchi, petri.latvala, ashutosh.dixit, wayne.boyer,
	matthew.d.roper

We've used Docker instances for setting up arm64 configurations
but I've found that this doesn't mesh well on a typical debian-based
setup (Ubuntu 20.04).

I've included a couple changes that change where we look for the
pkg-config binary, which in turn looks for our various libraries,
along with a change that avoids breakage during compilation due
to a system header ASM issue.

Casey Bowman (2):
  Alter arm64 cross compile pkg-config library selections
  Avoid using the sys/io.h header

 meson-cross-arm64.txt | 5 ++++-
 meson.build           | 6 ++++--
 2 files changed, 8 insertions(+), 3 deletions(-)

-- 
2.25.1

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [igt-dev] [PATCH i-g-t 1/2] Alter arm64 cross compile pkg-config library selections
  2021-10-15 20:32 [igt-dev] [PATCH i-g-t 0/2] Changes for typical arm64 cross-compile Casey Bowman
@ 2021-10-15 20:32 ` Casey Bowman
  2021-10-18 11:21   ` Petri Latvala
  2021-10-15 20:32 ` [igt-dev] [PATCH i-g-t 2/2] Avoid using the sys/io.h header Casey Bowman
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Casey Bowman @ 2021-10-15 20:32 UTC (permalink / raw)
  To: igt-dev
  Cc: lucas.demarchi, petri.latvala, ashutosh.dixit, wayne.boyer,
	matthew.d.roper

Specifies to use 'aarch64-linux-gnu-pkg-config' as the
pkg-config binary to use, as the normal /usr/bin/pkg-config
binary will be used on a host system. If we use this binary
we will observe that the shared object libraries will be
pulled from the x86_64 libraries instead of the aarch64 ones.

We also specify nouveau here as our libdrm driver library
because there is no support for libdrm-intel on arm64 yet.

Signed-off-by: Casey Bowman <casey.g.bowman@intel.com>
---
 meson-cross-arm64.txt | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/meson-cross-arm64.txt b/meson-cross-arm64.txt
index d96f180e2..6f69e3f69 100644
--- a/meson-cross-arm64.txt
+++ b/meson-cross-arm64.txt
@@ -2,7 +2,7 @@
 c = '/usr/bin/aarch64-linux-gnu-gcc'
 ar = '/usr/bin/aarch64-linux-gnu-gcc-ar'
 strip = '/usr/bin/aarch64-linux-gnu-strip'
-pkgconfig = 'pkg-config'
+pkgconfig = 'aarch64-linux-gnu-pkg-config'
 exe_wrapper = 'qemu-aarch64'
 
 [host_machine]
@@ -10,3 +10,6 @@ system = 'linux'
 cpu_family = 'aarch64'
 cpu = 'aarch64'
 endian = 'little'
+
+[project options]
+libdrm_drivers = 'nouveau'
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [igt-dev] [PATCH i-g-t 2/2] Avoid using the sys/io.h header
  2021-10-15 20:32 [igt-dev] [PATCH i-g-t 0/2] Changes for typical arm64 cross-compile Casey Bowman
  2021-10-15 20:32 ` [igt-dev] [PATCH i-g-t 1/2] Alter arm64 cross compile pkg-config library selections Casey Bowman
@ 2021-10-15 20:32 ` Casey Bowman
  2021-10-15 20:39 ` [igt-dev] ✗ GitLab.Pipeline: warning for Changes for typical arm64 cross-compile Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 11+ messages in thread
From: Casey Bowman @ 2021-10-15 20:32 UTC (permalink / raw)
  To: igt-dev
  Cc: lucas.demarchi, petri.latvala, ashutosh.dixit, wayne.boyer,
	matthew.d.roper

We deliberately want to avoid using the sys/io.h header
for arm64 because it causes the following error during
compilation:

In file included from ../tools/intel_reg.c:46:
../tools/intel_reg.c: In function ‘read_register’:
/usr/include/sys/io.h:47:3: error: impossible constraint in ‘asm’
   47 |   __asm__ __volatile__ ("inb %w1,%0":"=a" (_v):"Nd" (__port));
      |   ^~~~~~~

Signed-off-by: Casey Bowman <casey.g.bowman@intel.com>
---
 meson.build | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/meson.build b/meson.build
index f9a284d84..bccf9fa0c 100644
--- a/meson.build
+++ b/meson.build
@@ -208,8 +208,10 @@ endif
 if cc.has_header('libgen.h')
 	config.set('HAVE_LIBGEN_H', 1)
 endif
-if cc.has_header('sys/io.h')
-	config.set('HAVE_SYS_IO_H', 1)
+if host_machine.cpu_family() != 'aarch64'
+  if cc.has_header('sys/io.h')
+	  config.set('HAVE_SYS_IO_H', 1)
+  endif
 endif
 if cc.links('''
 #include <cpuid.h>
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [igt-dev] ✗ GitLab.Pipeline: warning for Changes for typical arm64 cross-compile
  2021-10-15 20:32 [igt-dev] [PATCH i-g-t 0/2] Changes for typical arm64 cross-compile Casey Bowman
  2021-10-15 20:32 ` [igt-dev] [PATCH i-g-t 1/2] Alter arm64 cross compile pkg-config library selections Casey Bowman
  2021-10-15 20:32 ` [igt-dev] [PATCH i-g-t 2/2] Avoid using the sys/io.h header Casey Bowman
@ 2021-10-15 20:39 ` Patchwork
  2021-10-15 21:07 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
  2021-10-16  1:08 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2021-10-15 20:39 UTC (permalink / raw)
  To: Casey Bowman; +Cc: igt-dev

== Series Details ==

Series: Changes for typical arm64 cross-compile
URL   : https://patchwork.freedesktop.org/series/95892/
State : warning

== Summary ==

Pipeline status: FAILED.

see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/424827 for the overview.

build:tests-debian-meson-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/14798877):
  Compiler for C supports arguments -Werror=missing-braces: YES
  Compiler for C supports arguments -Werror=nonnull: YES
  Compiler for C supports arguments -Werror=pointer-to-int-cast: YES
  Compiler for C supports arguments -Werror=return-type: YES
  Compiler for C supports arguments -Werror=sequence-point: YES
  Compiler for C supports arguments -Werror=trigraphs: YES
  Compiler for C supports arguments -Werror=write-strings: YES
  Compiler for C supports arguments -fno-builtin-malloc: YES
  Compiler for C supports arguments -fno-builtin-calloc: YES
  Compiler for C supports arguments -fcommon: YES
  Cross dependency libdrm found: NO (tried pkgconfig)
  
  meson.build:103:0: ERROR:  Dependency "libdrm" not found, tried pkgconfig
  
  A full log can be found at /builds/gfx-ci/igt-ci-tags/build/meson-logs/meson-log.txt
  section_end:1634330159:step_script
  section_start:1634330159:cleanup_file_variables
  Cleaning up file based variables
  section_end:1634330162:cleanup_file_variables
  ERROR: Job failed: exit code 1

== Logs ==

For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/424827

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [igt-dev] ✓ Fi.CI.BAT: success for Changes for typical arm64 cross-compile
  2021-10-15 20:32 [igt-dev] [PATCH i-g-t 0/2] Changes for typical arm64 cross-compile Casey Bowman
                   ` (2 preceding siblings ...)
  2021-10-15 20:39 ` [igt-dev] ✗ GitLab.Pipeline: warning for Changes for typical arm64 cross-compile Patchwork
@ 2021-10-15 21:07 ` Patchwork
  2021-10-16  1:08 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2021-10-15 21:07 UTC (permalink / raw)
  To: Casey Bowman; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 5115 bytes --]

== Series Details ==

Series: Changes for typical arm64 cross-compile
URL   : https://patchwork.freedesktop.org/series/95892/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_10744 -> IGTPW_6325
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/index.html

Known issues
------------

  Here are the changes found in IGTPW_6325 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_fence@basic-busy@bcs0:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][1] ([fdo#109271]) +9 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/fi-kbl-soraka/igt@gem_exec_fence@basic-busy@bcs0.html

  * igt@gem_huc_copy@huc-copy:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#2190])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html

  * igt@i915_selftest@live@gt_lrc:
    - fi-bsw-n3050:       [PASS][3] -> [DMESG-FAIL][4] ([i915#2373])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10744/fi-bsw-n3050/igt@i915_selftest@live@gt_lrc.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/fi-bsw-n3050/igt@i915_selftest@live@gt_lrc.html

  * igt@i915_selftest@live@gt_pm:
    - fi-kbl-soraka:      NOTRUN -> [DMESG-FAIL][5] ([i915#1886] / [i915#2291])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html

  * igt@i915_selftest@live@hangcheck:
    - fi-icl-y:           [PASS][6] -> [DMESG-FAIL][7] ([i915#3932])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10744/fi-icl-y/igt@i915_selftest@live@hangcheck.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/fi-icl-y/igt@i915_selftest@live@hangcheck.html

  * igt@kms_chamelium@common-hpd-after-suspend:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][8] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/fi-kbl-soraka/igt@kms_chamelium@common-hpd-after-suspend.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#533])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/fi-kbl-soraka/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html

  * igt@prime_vgem@basic-userptr:
    - fi-pnv-d510:        NOTRUN -> [SKIP][10] ([fdo#109271]) +48 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/fi-pnv-d510/igt@prime_vgem@basic-userptr.html

  * igt@runner@aborted:
    - fi-bsw-n3050:       NOTRUN -> [FAIL][11] ([fdo#109271] / [i915#1436] / [i915#3428])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/fi-bsw-n3050/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@gem_exec_parallel@engines@userptr:
    - fi-pnv-d510:        [INCOMPLETE][12] ([i915#299]) -> [PASS][13]
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10744/fi-pnv-d510/igt@gem_exec_parallel@engines@userptr.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/fi-pnv-d510/igt@gem_exec_parallel@engines@userptr.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2291]: https://gitlab.freedesktop.org/drm/intel/issues/2291
  [i915#2373]: https://gitlab.freedesktop.org/drm/intel/issues/2373
  [i915#299]: https://gitlab.freedesktop.org/drm/intel/issues/299
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3428]: https://gitlab.freedesktop.org/drm/intel/issues/3428
  [i915#3932]: https://gitlab.freedesktop.org/drm/intel/issues/3932
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533


Participating hosts (39 -> 37)
------------------------------

  Additional (2): fi-kbl-soraka fi-jsl-1 
  Missing    (4): fi-bsw-cyan fi-hsw-4200u bat-dg1-6 bat-dg1-5 


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_6250 -> IGTPW_6325

  CI-20190529: 20190529
  CI_DRM_10744: dc405215cfabb6f13490cbdceb1f6e831e8a8596 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_6325: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/index.html
  IGT_6250: 3c2ac88757f0d0ac9450487d314fcaceebc8bc26 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/index.html

[-- Attachment #2: Type: text/html, Size: 5944 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [igt-dev] ✗ Fi.CI.IGT: failure for Changes for typical arm64 cross-compile
  2021-10-15 20:32 [igt-dev] [PATCH i-g-t 0/2] Changes for typical arm64 cross-compile Casey Bowman
                   ` (3 preceding siblings ...)
  2021-10-15 21:07 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2021-10-16  1:08 ` Patchwork
  4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2021-10-16  1:08 UTC (permalink / raw)
  To: Casey Bowman; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 30257 bytes --]

== Series Details ==

Series: Changes for typical arm64 cross-compile
URL   : https://patchwork.freedesktop.org/series/95892/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_10744_full -> IGTPW_6325_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_6325_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_6325_full, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/index.html

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in IGTPW_6325_full:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_bw@linear-tiling-5-displays-3840x2160p:
    - shard-iclb:         NOTRUN -> [SKIP][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb6/igt@kms_bw@linear-tiling-5-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-6-displays-3840x2160p:
    - shard-tglb:         NOTRUN -> [SKIP][2]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb7/igt@kms_bw@linear-tiling-6-displays-3840x2160p.html

  
#### Warnings ####

  * igt@runner@aborted:
    - shard-iclb:         ([FAIL][3], [FAIL][4], [FAIL][5], [FAIL][6], [FAIL][7], [FAIL][8]) ([i915#3002] / [i915#4006]) -> ([FAIL][9], [FAIL][10], [FAIL][11], [FAIL][12]) ([i915#3002])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10744/shard-iclb3/igt@runner@aborted.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10744/shard-iclb4/igt@runner@aborted.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10744/shard-iclb6/igt@runner@aborted.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10744/shard-iclb4/igt@runner@aborted.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10744/shard-iclb8/igt@runner@aborted.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10744/shard-iclb5/igt@runner@aborted.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb2/igt@runner@aborted.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb1/igt@runner@aborted.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb3/igt@runner@aborted.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb1/igt@runner@aborted.html

  
Known issues
------------

  Here are the changes found in IGTPW_6325_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@feature_discovery@display-4x:
    - shard-apl:          NOTRUN -> [SKIP][13] ([fdo#109271]) +313 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-apl1/igt@feature_discovery@display-4x.html

  * igt@gem_create@create-massive:
    - shard-snb:          NOTRUN -> [DMESG-WARN][14] ([i915#3002])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-snb7/igt@gem_create@create-massive.html

  * igt@gem_ctx_persistence@engines-hostile-preempt:
    - shard-snb:          NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#1099]) +3 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-snb2/igt@gem_ctx_persistence@engines-hostile-preempt.html

  * igt@gem_ctx_shared@q-in-order:
    - shard-snb:          NOTRUN -> [SKIP][16] ([fdo#109271]) +367 similar issues
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-snb5/igt@gem_ctx_shared@q-in-order.html

  * igt@gem_ctx_sseu@invalid-args:
    - shard-tglb:         NOTRUN -> [SKIP][17] ([i915#280])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb5/igt@gem_ctx_sseu@invalid-args.html

  * igt@gem_eio@unwedge-stress:
    - shard-snb:          NOTRUN -> [FAIL][18] ([i915#3354])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-snb2/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-kbl:          NOTRUN -> [FAIL][19] ([i915#2846])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-kbl6/igt@gem_exec_fair@basic-deadline.html
    - shard-apl:          NOTRUN -> [FAIL][20] ([i915#2846])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-apl7/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none-solo@rcs0:
    - shard-kbl:          NOTRUN -> [FAIL][21] ([i915#2842]) +3 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-kbl7/igt@gem_exec_fair@basic-none-solo@rcs0.html

  * igt@gem_exec_fair@basic-none@vcs1:
    - shard-iclb:         NOTRUN -> [FAIL][22] ([i915#2842]) +4 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb2/igt@gem_exec_fair@basic-none@vcs1.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-glk:          [PASS][23] -> [FAIL][24] ([i915#2842])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10744/shard-glk1/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-glk9/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_fair@basic-pace@vecs0:
    - shard-kbl:          [PASS][25] -> [FAIL][26] ([i915#2842])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10744/shard-kbl7/igt@gem_exec_fair@basic-pace@vecs0.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-kbl1/igt@gem_exec_fair@basic-pace@vecs0.html

  * igt@gem_exec_fair@basic-sync@rcs0:
    - shard-kbl:          [PASS][27] -> [SKIP][28] ([fdo#109271])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10744/shard-kbl4/igt@gem_exec_fair@basic-sync@rcs0.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-kbl6/igt@gem_exec_fair@basic-sync@rcs0.html

  * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
    - shard-iclb:         NOTRUN -> [SKIP][29] ([fdo#109313])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html

  * igt@gem_exec_params@no-bsd:
    - shard-tglb:         NOTRUN -> [SKIP][30] ([fdo#109283])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb6/igt@gem_exec_params@no-bsd.html

  * igt@gem_exec_params@no-vebox:
    - shard-iclb:         NOTRUN -> [SKIP][31] ([fdo#109283])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb2/igt@gem_exec_params@no-vebox.html

  * igt@gem_exec_whisper@basic-fds-priority:
    - shard-glk:          [PASS][32] -> [DMESG-WARN][33] ([i915#118])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10744/shard-glk6/igt@gem_exec_whisper@basic-fds-priority.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-glk7/igt@gem_exec_whisper@basic-fds-priority.html

  * igt@gem_pread@exhaustion:
    - shard-apl:          NOTRUN -> [WARN][34] ([i915#2658]) +1 similar issue
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-apl8/igt@gem_pread@exhaustion.html
    - shard-kbl:          NOTRUN -> [WARN][35] ([i915#2658])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-kbl4/igt@gem_pread@exhaustion.html

  * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
    - shard-tglb:         NOTRUN -> [SKIP][36] ([i915#4270])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb2/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html

  * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
    - shard-iclb:         NOTRUN -> [SKIP][37] ([i915#768])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb1/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html

  * igt@gem_softpin@noreloc-s3:
    - shard-apl:          [PASS][38] -> [DMESG-WARN][39] ([i915#180])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10744/shard-apl6/igt@gem_softpin@noreloc-s3.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-apl6/igt@gem_softpin@noreloc-s3.html

  * igt@gem_userptr_blits@create-destroy-unsync:
    - shard-tglb:         NOTRUN -> [SKIP][40] ([i915#3297]) +2 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb8/igt@gem_userptr_blits@create-destroy-unsync.html

  * igt@gem_userptr_blits@unsync-overlap:
    - shard-iclb:         NOTRUN -> [SKIP][41] ([i915#3297]) +3 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb6/igt@gem_userptr_blits@unsync-overlap.html

  * igt@gem_userptr_blits@vma-merge:
    - shard-apl:          NOTRUN -> [FAIL][42] ([i915#3318])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-apl6/igt@gem_userptr_blits@vma-merge.html

  * igt@gem_workarounds@suspend-resume:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][43] ([i915#180])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-kbl4/igt@gem_workarounds@suspend-resume.html

  * igt@gen3_render_tiledy_blits:
    - shard-tglb:         NOTRUN -> [SKIP][44] ([fdo#109289]) +5 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb8/igt@gen3_render_tiledy_blits.html

  * igt@gen7_exec_parse@batch-without-end:
    - shard-iclb:         NOTRUN -> [SKIP][45] ([fdo#109289]) +3 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb2/igt@gen7_exec_parse@batch-without-end.html

  * igt@gen9_exec_parse@basic-rejected:
    - shard-tglb:         NOTRUN -> [SKIP][46] ([i915#2856]) +3 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb3/igt@gen9_exec_parse@basic-rejected.html

  * igt@gen9_exec_parse@unaligned-access:
    - shard-iclb:         NOTRUN -> [SKIP][47] ([i915#2856]) +1 similar issue
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb5/igt@gen9_exec_parse@unaligned-access.html

  * igt@i915_pm_dc@dc3co-vpb-simulation:
    - shard-tglb:         NOTRUN -> [SKIP][48] ([i915#1904])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb8/igt@i915_pm_dc@dc3co-vpb-simulation.html
    - shard-glk:          NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#658])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-glk8/igt@i915_pm_dc@dc3co-vpb-simulation.html
    - shard-iclb:         NOTRUN -> [SKIP][50] ([i915#658]) +1 similar issue
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb5/igt@i915_pm_dc@dc3co-vpb-simulation.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-tglb:         NOTRUN -> [FAIL][51] ([i915#454])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb7/igt@i915_pm_dc@dc6-psr.html

  * igt@i915_pm_lpsp@screens-disabled:
    - shard-tglb:         NOTRUN -> [SKIP][52] ([i915#1902])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb1/igt@i915_pm_lpsp@screens-disabled.html
    - shard-iclb:         NOTRUN -> [SKIP][53] ([i915#1902])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb8/igt@i915_pm_lpsp@screens-disabled.html

  * igt@kms_atomic_transition@plane-all-modeset-transition:
    - shard-tglb:         NOTRUN -> [SKIP][54] ([i915#1769])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb7/igt@kms_atomic_transition@plane-all-modeset-transition.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-iclb:         NOTRUN -> [SKIP][55] ([i915#1769])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][56] ([fdo#111614]) +3 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb8/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-kbl:          NOTRUN -> [SKIP][57] ([fdo#109271] / [i915#3777]) +1 similar issue
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-kbl1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-apl:          NOTRUN -> [SKIP][58] ([fdo#109271] / [i915#3777]) +1 similar issue
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-apl8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-90:
    - shard-iclb:         NOTRUN -> [SKIP][59] ([fdo#110725] / [fdo#111614]) +1 similar issue
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb1/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
    - shard-tglb:         NOTRUN -> [SKIP][60] ([fdo#111615]) +4 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb2/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-iclb:         NOTRUN -> [SKIP][61] ([fdo#110723]) +2 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_big_joiner@2x-modeset:
    - shard-tglb:         NOTRUN -> [SKIP][62] ([i915#2705])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb6/igt@kms_big_joiner@2x-modeset.html

  * igt@kms_big_joiner@basic:
    - shard-iclb:         NOTRUN -> [SKIP][63] ([i915#2705]) +1 similar issue
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb3/igt@kms_big_joiner@basic.html

  * igt@kms_bw@linear-tiling-2-displays-1920x1080p:
    - shard-apl:          NOTRUN -> [DMESG-FAIL][64] ([i915#4298])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-apl7/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html

  * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc:
    - shard-apl:          NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#3886]) +11 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-apl2/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:
    - shard-iclb:         NOTRUN -> [SKIP][66] ([fdo#109278] / [i915#3886]) +4 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb5/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html
    - shard-kbl:          NOTRUN -> [SKIP][67] ([fdo#109271] / [i915#3886]) +7 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-kbl1/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
    - shard-glk:          NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#3886]) +2 similar issues
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-glk3/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][69] ([i915#3689] / [i915#3886]) +3 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb8/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-missing-ccs-buffer-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][70] ([i915#3689]) +8 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb2/igt@kms_ccs@pipe-d-missing-ccs-buffer-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_gen12_mc_ccs:
    - shard-glk:          NOTRUN -> [SKIP][71] ([fdo#109271]) +42 similar issues
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-glk8/igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_gen12_mc_ccs.html

  * igt@kms_chamelium@dp-edid-change-during-suspend:
    - shard-iclb:         NOTRUN -> [SKIP][72] ([fdo#109284] / [fdo#111827]) +10 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb3/igt@kms_chamelium@dp-edid-change-during-suspend.html

  * igt@kms_chamelium@hdmi-edid-change-during-suspend:
    - shard-apl:          NOTRUN -> [SKIP][73] ([fdo#109271] / [fdo#111827]) +24 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-apl2/igt@kms_chamelium@hdmi-edid-change-during-suspend.html

  * igt@kms_chamelium@vga-hpd-for-each-pipe:
    - shard-kbl:          NOTRUN -> [SKIP][74] ([fdo#109271] / [fdo#111827]) +16 similar issues
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-kbl1/igt@kms_chamelium@vga-hpd-for-each-pipe.html

  * igt@kms_chamelium@vga-hpd-without-ddc:
    - shard-snb:          NOTRUN -> [SKIP][75] ([fdo#109271] / [fdo#111827]) +20 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-snb2/igt@kms_chamelium@vga-hpd-without-ddc.html

  * igt@kms_color@pipe-d-ctm-0-5:
    - shard-iclb:         NOTRUN -> [SKIP][76] ([fdo#109278] / [i915#1149]) +2 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb6/igt@kms_color@pipe-d-ctm-0-5.html

  * igt@kms_color_chamelium@pipe-b-ctm-0-75:
    - shard-tglb:         NOTRUN -> [SKIP][77] ([fdo#109284] / [fdo#111827]) +10 similar issues
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb6/igt@kms_color_chamelium@pipe-b-ctm-0-75.html

  * igt@kms_color_chamelium@pipe-d-degamma:
    - shard-glk:          NOTRUN -> [SKIP][78] ([fdo#109271] / [fdo#111827]) +1 similar issue
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-glk1/igt@kms_color_chamelium@pipe-d-degamma.html

  * igt@kms_concurrent@pipe-c:
    - shard-tglb:         NOTRUN -> [FAIL][79] ([i915#1385]) +3 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb5/igt@kms_concurrent@pipe-c.html

  * igt@kms_content_protection@atomic:
    - shard-kbl:          NOTRUN -> [TIMEOUT][80] ([i915#1319]) +1 similar issue
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-kbl7/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-apl:          NOTRUN -> [TIMEOUT][81] ([i915#1319]) +1 similar issue
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-apl7/igt@kms_content_protection@atomic-dpms.html
    - shard-tglb:         NOTRUN -> [SKIP][82] ([fdo#111828]) +1 similar issue
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb2/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-tglb:         NOTRUN -> [SKIP][83] ([i915#3116])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb3/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][84] ([i915#3319]) +1 similar issue
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x512-offscreen:
    - shard-iclb:         NOTRUN -> [SKIP][85] ([fdo#109278] / [fdo#109279]) +2 similar issues
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb5/igt@kms_cursor_crc@pipe-a-cursor-512x512-offscreen.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen:
    - shard-tglb:         NOTRUN -> [SKIP][86] ([fdo#109279] / [i915#3359]) +6 similar issues
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-max-size-sliding:
    - shard-tglb:         NOTRUN -> [SKIP][87] ([i915#3359]) +5 similar issues
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb7/igt@kms_cursor_crc@pipe-d-cursor-max-size-sliding.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
    - shard-iclb:         NOTRUN -> [SKIP][88] ([fdo#109274] / [fdo#109278]) +3 similar issues
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb1/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html

  * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:
    - shard-tglb:         NOTRUN -> [SKIP][89] ([i915#3528])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb3/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html
    - shard-iclb:         NOTRUN -> [SKIP][90] ([i915#3528])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb3/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-kbl:          [PASS][91] -> [INCOMPLETE][92] ([i915#180] / [i915#636])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10744/shard-kbl6/igt@kms_fbcon_fbt@fbc-suspend.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-kbl1/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-flip-vs-fences-interruptible:
    - shard-iclb:         NOTRUN -> [SKIP][93] ([fdo#109274])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb1/igt@kms_flip@2x-flip-vs-fences-interruptible.html

  * igt@kms_flip@flip-vs-suspend@a-dp1:
    - shard-apl:          NOTRUN -> [DMESG-WARN][94] ([i915#180]) +4 similar issues
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-apl8/igt@kms_flip@flip-vs-suspend@a-dp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile:
    - shard-tglb:         NOTRUN -> [SKIP][95] ([i915#2587])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile:
    - shard-iclb:         [PASS][96] -> [SKIP][97] ([i915#3701]) +1 similar issue
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10744/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
    - shard-tglb:         NOTRUN -> [SKIP][98] ([fdo#111825]) +36 similar issues
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
    - shard-iclb:         NOTRUN -> [SKIP][99] ([fdo#109280]) +25 similar issues
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-suspend:
    - shard-tglb:         [PASS][100] -> [INCOMPLETE][101] ([i915#2411] / [i915#456]) +1 similar issue
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10744/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-tglb:         NOTRUN -> [SKIP][102] ([i915#1187])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb1/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:
    - shard-apl:          NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#533])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html
    - shard-glk:          NOTRUN -> [SKIP][104] ([fdo#109271] / [i915#533]) +1 similar issue
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-glk7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html

  * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:
    - shard-apl:          NOTRUN -> [FAIL][105] ([fdo#108145] / [i915#265]) +5 similar issues
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-apl3/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:
    - shard-apl:          NOTRUN -> [FAIL][106] ([i915#265])
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-apl1/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max:
    - shard-kbl:          NOTRUN -> [FAIL][107] ([fdo#108145] / [i915#265]) +1 similar issue
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-kbl1/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html

  * igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max:
    - shard-iclb:         NOTRUN -> [SKIP][108] ([fdo#109278]) +36 similar issues
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb4/igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max.html

  * igt@kms_plane_lowres@pipe-b-tiling-y:
    - shard-tglb:         NOTRUN -> [SKIP][109] ([i915#3536]) +1 similar issue
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb1/igt@kms_plane_lowres@pipe-b-tiling-y.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1:
    - shard-tglb:         NOTRUN -> [SKIP][110] ([i915#2920]) +3 similar issues
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
    - shard-apl:          NOTRUN -> [SKIP][111] ([fdo#109271] / [i915#658]) +9 similar issues
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-apl3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3:
    - shard-kbl:          NOTRUN -> [SKIP][112] ([fdo#109271] / [i915#658]) +3 similar issues
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-kbl6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-1:
    - shard-iclb:         NOTRUN -> [SKIP][113] ([i915#2920])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html

  * igt@kms_psr@psr2_cursor_blt:
    - shard-tglb:         NOTRUN -> [FAIL][114] ([i915#132] / [i915#3467])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb1/igt@kms_psr@psr2_cursor_blt.html

  * igt@kms_psr@psr2_primary_blt:
    - shard-iclb:         NOTRUN -> [SKIP][115] ([fdo#109441])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb5/igt@kms_psr@psr2_primary_blt.html

  * igt@kms_setmode@basic:
    - shard-snb:          NOTRUN -> [FAIL][116] ([i915#31])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-snb5/igt@kms_setmode@basic.html

  * igt@kms_sysfs_edid_timing:
    - shard-apl:          NOTRUN -> [FAIL][117] ([IGT#2])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-apl2/igt@kms_sysfs_edid_timing.html
    - shard-kbl:          NOTRUN -> [FAIL][118] ([IGT#2])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-kbl4/igt@kms_sysfs_edid_timing.html

  * igt@kms_vblank@pipe-d-wait-idle:
    - shard-kbl:          NOTRUN -> [SKIP][119] ([fdo#109271] / [i915#533]) +2 similar issues
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-kbl7/igt@kms_vblank@pipe-d-wait-idle.html

  * igt@kms_vrr@flip-basic:
    - shard-tglb:         NOTRUN -> [SKIP][120] ([fdo#109502]) +1 similar issue
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb6/igt@kms_vrr@flip-basic.html

  * igt@kms_writeback@writeback-check-output:
    - shard-iclb:         NOTRUN -> [SKIP][121] ([i915#2437])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb8/igt@kms_writeback@writeback-check-output.html

  * igt@nouveau_crc@pipe-a-source-rg:
    - shard-iclb:         NOTRUN -> [SKIP][122] ([i915#2530]) +2 similar issues
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb6/igt@nouveau_crc@pipe-a-source-rg.html

  * igt@nouveau_crc@pipe-d-source-rg:
    - shard-tglb:         NOTRUN -> [SKIP][123] ([i915#2530]) +3 similar issues
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb3/igt@nouveau_crc@pipe-d-source-rg.html

  * igt@perf_pmu@rc6-suspend:
    - shard-tglb:         [PASS][124] -> [INCOMPLETE][125] ([i915#456])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10744/shard-tglb7/igt@perf_pmu@rc6-suspend.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb7/igt@perf_pmu@rc6-suspend.html

  * igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name:
    - shard-tglb:         NOTRUN -> [SKIP][126] ([fdo#109291]) +4 similar issues
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb1/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html

  * igt@prime_nv_pcopy@test2:
    - shard-kbl:          NOTRUN -> [SKIP][127] ([fdo#109271]) +214 similar issues
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-kbl1/igt@prime_nv_pcopy@test2.html

  * igt@prime_nv_pcopy@test3_3:
    - shard-iclb:         NOTRUN -> [SKIP][128] ([fdo#109291]) +4 similar issues
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb4/igt@prime_nv_pcopy@test3_3.html

  * igt@prime_vgem@basic-userptr:
    - shard-tglb:         NOTRUN -> [SKIP][129] ([i915#3301])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb7/igt@prime_vgem@basic-userptr.html
    - shard-iclb:         NOTRUN -> [SKIP][130] ([i915#3301])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-iclb8/igt@prime_vgem@basic-userptr.html

  * igt@prime_vgem@fence-write-hang:
    - shard-tglb:         NOTRUN -> [SKIP][131] ([fdo#109295])
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-tglb7/igt@prime_vgem@fence-write-hang.html

  * igt@sysfs_clients@create:
    - shard-glk:          NOTRUN -> [SKIP][132] ([fdo#109271] / [i915#2994])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/shard-glk1/igt@sysfs_clients@create.html

  * igt@sysfs_clients@fair-1:
    - shard-iclb:         NOTRUN -> [SK

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6325/index.html

[-- Attachment #2: Type: text/html, Size: 34737 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 1/2] Alter arm64 cross compile pkg-config library selections
  2021-10-15 20:32 ` [igt-dev] [PATCH i-g-t 1/2] Alter arm64 cross compile pkg-config library selections Casey Bowman
@ 2021-10-18 11:21   ` Petri Latvala
  2021-10-18 16:43     ` Casey Bowman
  2021-10-18 16:55     ` Lucas De Marchi
  0 siblings, 2 replies; 11+ messages in thread
From: Petri Latvala @ 2021-10-18 11:21 UTC (permalink / raw)
  To: Casey Bowman
  Cc: igt-dev, lucas.demarchi, ashutosh.dixit, wayne.boyer, matthew.d.roper

On Fri, Oct 15, 2021 at 01:32:37PM -0700, Casey Bowman wrote:
> Specifies to use 'aarch64-linux-gnu-pkg-config' as the
> pkg-config binary to use, as the normal /usr/bin/pkg-config
> binary will be used on a host system. If we use this binary
> we will observe that the shared object libraries will be
> pulled from the x86_64 libraries instead of the aarch64 ones.

PKG_CONFIG_PATH can also be set accordingly, as is done in
.gitlab-ci.yml

> 
> We also specify nouveau here as our libdrm driver library
> because there is no support for libdrm-intel on arm64 yet.

Why the automatic option doesn't work here? There's no reason to
limit/enforce everyone to libdrm-nouveau, and only libdrm-nouveau.


-- 
Petri Latvala


> 
> Signed-off-by: Casey Bowman <casey.g.bowman@intel.com>
> ---
>  meson-cross-arm64.txt | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/meson-cross-arm64.txt b/meson-cross-arm64.txt
> index d96f180e2..6f69e3f69 100644
> --- a/meson-cross-arm64.txt
> +++ b/meson-cross-arm64.txt
> @@ -2,7 +2,7 @@
>  c = '/usr/bin/aarch64-linux-gnu-gcc'
>  ar = '/usr/bin/aarch64-linux-gnu-gcc-ar'
>  strip = '/usr/bin/aarch64-linux-gnu-strip'
> -pkgconfig = 'pkg-config'
> +pkgconfig = 'aarch64-linux-gnu-pkg-config'
>  exe_wrapper = 'qemu-aarch64'
>  
>  [host_machine]
> @@ -10,3 +10,6 @@ system = 'linux'
>  cpu_family = 'aarch64'
>  cpu = 'aarch64'
>  endian = 'little'
> +
> +[project options]
> +libdrm_drivers = 'nouveau'
> -- 
> 2.25.1
> 

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 1/2] Alter arm64 cross compile pkg-config library selections
  2021-10-18 11:21   ` Petri Latvala
@ 2021-10-18 16:43     ` Casey Bowman
  2021-10-19  8:39       ` Petri Latvala
  2021-10-18 16:55     ` Lucas De Marchi
  1 sibling, 1 reply; 11+ messages in thread
From: Casey Bowman @ 2021-10-18 16:43 UTC (permalink / raw)
  To: Petri Latvala
  Cc: igt-dev, lucas.demarchi, ashutosh.dixit, wayne.boyer, matthew.d.roper


On 10/18/21 4:21 AM, Petri Latvala wrote:
> On Fri, Oct 15, 2021 at 01:32:37PM -0700, Casey Bowman wrote:
>> Specifies to use 'aarch64-linux-gnu-pkg-config' as the
>> pkg-config binary to use, as the normal /usr/bin/pkg-config
>> binary will be used on a host system. If we use this binary
>> we will observe that the shared object libraries will be
>> pulled from the x86_64 libraries instead of the aarch64 ones.
> PKG_CONFIG_PATH can also be set accordingly, as is done in
> .gitlab-ci.yml
>
>> We also specify nouveau here as our libdrm driver library
>> because there is no support for libdrm-intel on arm64 yet.
> Why the automatic option doesn't work here? There's no reason to
> limit/enforce everyone to libdrm-nouveau, and only libdrm-nouveau.
>
>
You are right, the automatic option did work when the correct
pkg-config binary was in use. But this failed for me when I
only set PKG_CONFIG_PATH.

In the meson-log.txt file, with this patch reverted, I saw:

Run-time dependency libdrm found: YES 2.4.105
Pkg-config binary for MachineChoice.HOST is cached.
Determining dependency 'libdrm_intel' with pkg-config executable 
'/usr/bin/pkg-config'
env[PKG_CONFIG_PATH]: /usr/lib/aarch64-linux-gnu/pkgconfig/
Called `/usr/bin/pkg-config --modversion libdrm_intel` -> 0
2.4.105
env[PKG_CONFIG_PATH]: /usr/lib/aarch64-linux-gnu/pkgconfig/
Called `/usr/bin/pkg-config --cflags libdrm_intel` -> 0
-I/usr/include/libdrm
env[PKG_CONFIG_PATH]: /usr/lib/aarch64-linux-gnu/pkgconfig/
env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
Called `/usr/bin/pkg-config --libs libdrm_intel` -> 0
-L/usr/lib/aarch64-linux-gnu -L/usr/lib/x86_64-linux-gnu -ldrm_intel -ldrm
env[PKG_CONFIG_PATH]: /usr/lib/aarch64-linux-gnu/pkgconfig/
Called `/usr/bin/pkg-config --libs libdrm_intel` -> 0
-L/usr/lib/aarch64-linux-gnu -ldrm_intel -ldrm
Run-time dependency libdrm_intel found: YES 2.4.105

I also observed the same issues with valgrind, xmlrpc-c-config,
and more.

In my setup, I'm not seeing the arm64 pkg-config binary used
properly when using PKG_CONFIG_PATH, do you see different
behavior or have a suggestion for this?

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 1/2] Alter arm64 cross compile pkg-config library selections
  2021-10-18 11:21   ` Petri Latvala
  2021-10-18 16:43     ` Casey Bowman
@ 2021-10-18 16:55     ` Lucas De Marchi
  2021-10-19  8:37       ` Petri Latvala
  1 sibling, 1 reply; 11+ messages in thread
From: Lucas De Marchi @ 2021-10-18 16:55 UTC (permalink / raw)
  To: Petri Latvala
  Cc: Casey Bowman, igt-dev, ashutosh.dixit, wayne.boyer, matthew.d.roper

On Mon, Oct 18, 2021 at 02:21:34PM +0300, Petri Latvala wrote:
>On Fri, Oct 15, 2021 at 01:32:37PM -0700, Casey Bowman wrote:
>> Specifies to use 'aarch64-linux-gnu-pkg-config' as the
>> pkg-config binary to use, as the normal /usr/bin/pkg-config
>> binary will be used on a host system. If we use this binary
>> we will observe that the shared object libraries will be
>> pulled from the x86_64 libraries instead of the aarch64 ones.
>
>PKG_CONFIG_PATH can also be set accordingly, as is done in
>.gitlab-ci.yml

is this something generally not setup in all distros?  using
arch + -pkg-config matches the documentation at
https://mesonbuild.com/Machine-files.html

Indeed, checking my archlinux installation it seems I don't have a
aarch64-linux-gnu-pkg-config and nothing provides it (even though there
is a aarch64 crosscompiler). It looks like I even mentioned this issue
in the past for another project at https://politreco.com/2019/09/side-load-on-embedded-linux-with-buildroot/

I wonder if we could rather set pkg_config_libdir like mentioned in
https://mesonbuild.com/Cross-compilation.html and be compatible out of
the box with more distros.

>
>>
>> We also specify nouveau here as our libdrm driver library
>> because there is no support for libdrm-intel on arm64 yet.
>
>Why the automatic option doesn't work here? There's no reason to
>limit/enforce everyone to libdrm-nouveau, and only libdrm-nouveau.
>

agreed.

Lucas De Marchi

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 1/2] Alter arm64 cross compile pkg-config library selections
  2021-10-18 16:55     ` Lucas De Marchi
@ 2021-10-19  8:37       ` Petri Latvala
  0 siblings, 0 replies; 11+ messages in thread
From: Petri Latvala @ 2021-10-19  8:37 UTC (permalink / raw)
  To: Lucas De Marchi
  Cc: Casey Bowman, igt-dev, ashutosh.dixit, wayne.boyer, matthew.d.roper

On Mon, Oct 18, 2021 at 09:55:37AM -0700, Lucas De Marchi wrote:
> On Mon, Oct 18, 2021 at 02:21:34PM +0300, Petri Latvala wrote:
> > On Fri, Oct 15, 2021 at 01:32:37PM -0700, Casey Bowman wrote:
> > > Specifies to use 'aarch64-linux-gnu-pkg-config' as the
> > > pkg-config binary to use, as the normal /usr/bin/pkg-config
> > > binary will be used on a host system. If we use this binary
> > > we will observe that the shared object libraries will be
> > > pulled from the x86_64 libraries instead of the aarch64 ones.
> > 
> > PKG_CONFIG_PATH can also be set accordingly, as is done in
> > .gitlab-ci.yml
> 
> is this something generally not setup in all distros?  using
> arch + -pkg-config matches the documentation at
> https://mesonbuild.com/Machine-files.html

Indeed, I stand corrected and setting the pkg-config binary is the
correct way to use it for cross-compiling! I was taken astray by the
gitlab-CI "just working", and the Debian packaging where a cross
wrapper does a good deal of the correct setup.

> 
> Indeed, checking my archlinux installation it seems I don't have a
> aarch64-linux-gnu-pkg-config and nothing provides it (even though there
> is a aarch64 crosscompiler). It looks like I even mentioned this issue
> in the past for another project at https://politreco.com/2019/09/side-load-on-embedded-linux-with-buildroot/
> 
> I wonder if we could rather set pkg_config_libdir like mentioned in
> https://mesonbuild.com/Cross-compilation.html and be compatible out of
> the box with more distros.

I don't understand the implications of this sentence:

  Since 0.54.0 The pkg_config_libdir property may point to a list of
  path used internally by Meson to set the PKG_CONFIG_LIBDIR
  environment variable for pkg-config.

We currently require meson >= 0.47.2. Does that sentence mean the
property isn't used at all, or is it a warning for meson versions >=
0.54?

Is arch an outlier with the lack of aarch64-linux-gnu-pkg-config btw?
I only know what's done with Debian based distros.


-- 
Petri Latvala

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 1/2] Alter arm64 cross compile pkg-config library selections
  2021-10-18 16:43     ` Casey Bowman
@ 2021-10-19  8:39       ` Petri Latvala
  0 siblings, 0 replies; 11+ messages in thread
From: Petri Latvala @ 2021-10-19  8:39 UTC (permalink / raw)
  To: Casey Bowman
  Cc: igt-dev, lucas.demarchi, ashutosh.dixit, wayne.boyer, matthew.d.roper

On Mon, Oct 18, 2021 at 09:43:45AM -0700, Casey Bowman wrote:
> 
> On 10/18/21 4:21 AM, Petri Latvala wrote:
> > On Fri, Oct 15, 2021 at 01:32:37PM -0700, Casey Bowman wrote:
> > > Specifies to use 'aarch64-linux-gnu-pkg-config' as the
> > > pkg-config binary to use, as the normal /usr/bin/pkg-config
> > > binary will be used on a host system. If we use this binary
> > > we will observe that the shared object libraries will be
> > > pulled from the x86_64 libraries instead of the aarch64 ones.
> > PKG_CONFIG_PATH can also be set accordingly, as is done in
> > .gitlab-ci.yml
> > 
> > > We also specify nouveau here as our libdrm driver library
> > > because there is no support for libdrm-intel on arm64 yet.
> > Why the automatic option doesn't work here? There's no reason to
> > limit/enforce everyone to libdrm-nouveau, and only libdrm-nouveau.
> > 
> > 
> You are right, the automatic option did work when the correct
> pkg-config binary was in use. But this failed for me when I
> only set PKG_CONFIG_PATH.
> 
> In the meson-log.txt file, with this patch reverted, I saw:
> 
> Run-time dependency libdrm found: YES 2.4.105
> Pkg-config binary for MachineChoice.HOST is cached.
> Determining dependency 'libdrm_intel' with pkg-config executable
> '/usr/bin/pkg-config'
> env[PKG_CONFIG_PATH]: /usr/lib/aarch64-linux-gnu/pkgconfig/
> Called `/usr/bin/pkg-config --modversion libdrm_intel` -> 0
> 2.4.105
> env[PKG_CONFIG_PATH]: /usr/lib/aarch64-linux-gnu/pkgconfig/
> Called `/usr/bin/pkg-config --cflags libdrm_intel` -> 0
> -I/usr/include/libdrm
> env[PKG_CONFIG_PATH]: /usr/lib/aarch64-linux-gnu/pkgconfig/
> env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
> Called `/usr/bin/pkg-config --libs libdrm_intel` -> 0
> -L/usr/lib/aarch64-linux-gnu -L/usr/lib/x86_64-linux-gnu -ldrm_intel -ldrm
> env[PKG_CONFIG_PATH]: /usr/lib/aarch64-linux-gnu/pkgconfig/
> Called `/usr/bin/pkg-config --libs libdrm_intel` -> 0
> -L/usr/lib/aarch64-linux-gnu -ldrm_intel -ldrm
> Run-time dependency libdrm_intel found: YES 2.4.105
> 
> I also observed the same issues with valgrind, xmlrpc-c-config,
> and more.
> 
> In my setup, I'm not seeing the arm64 pkg-config binary used
> properly when using PKG_CONFIG_PATH, do you see different
> behavior or have a suggestion for this?
> 


As I replied to Lucas, I now understand that setting the binary is the
more correct thing to do and gitlab-CI working with this setup is
accidental.


-- 
Petri Latvala

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2021-10-19  8:40 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-15 20:32 [igt-dev] [PATCH i-g-t 0/2] Changes for typical arm64 cross-compile Casey Bowman
2021-10-15 20:32 ` [igt-dev] [PATCH i-g-t 1/2] Alter arm64 cross compile pkg-config library selections Casey Bowman
2021-10-18 11:21   ` Petri Latvala
2021-10-18 16:43     ` Casey Bowman
2021-10-19  8:39       ` Petri Latvala
2021-10-18 16:55     ` Lucas De Marchi
2021-10-19  8:37       ` Petri Latvala
2021-10-15 20:32 ` [igt-dev] [PATCH i-g-t 2/2] Avoid using the sys/io.h header Casey Bowman
2021-10-15 20:39 ` [igt-dev] ✗ GitLab.Pipeline: warning for Changes for typical arm64 cross-compile Patchwork
2021-10-15 21:07 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2021-10-16  1:08 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.