diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-01-13 23:07:16 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-01-15 13:39:25 +0000 |
| commit | 49c12484ebb80d72cc84aaba8dc3fc9f2954b4db (patch) | |
| tree | 281d7a9031d60698c9f16f8d7f2ea3a0e213d50c /meta/recipes-graphics/vulkan/vulkan-samples_git.bb | |
| parent | 09c7fc6e5341bfadb0f6037e7294aee2454eedef (diff) | |
| download | poky-49c12484ebb80d72cc84aaba8dc3fc9f2954b4db.tar.gz | |
vulkan-samples: Fix reproducibility issue
There is code to remove the prefix CMAKE_SOURCE_DIR from __FILENAME__ paths
used for logging with LOGE() in the code. We need to make this match the value we use
in the debug source remapping from CFLAGS. If we don't, the code is firstly removing
the incorrect prefix and possibly moving outside the string, secondly, it causes a
reproducibility issue depending on the length of path the build happens in.
Add a small patch and configuration to avoid the issue.
(From OE-Core rev: 410dbfd1f82b4862ced6fca88789edf0fd9d65df)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/vulkan/vulkan-samples_git.bb')
| -rw-r--r-- | meta/recipes-graphics/vulkan/vulkan-samples_git.bb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/meta/recipes-graphics/vulkan/vulkan-samples_git.bb b/meta/recipes-graphics/vulkan/vulkan-samples_git.bb index 896b248327..447d498fb3 100644 --- a/meta/recipes-graphics/vulkan/vulkan-samples_git.bb +++ b/meta/recipes-graphics/vulkan/vulkan-samples_git.bb | |||
| @@ -6,6 +6,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=48aa35cefb768436223a6e7f18dc2a2a" | |||
| 6 | SRC_URI = "gitsm://github.com/KhronosGroup/Vulkan-Samples.git \ | 6 | SRC_URI = "gitsm://github.com/KhronosGroup/Vulkan-Samples.git \ |
| 7 | file://0001-CMakeLists.txt-do-not-hardcode-lib-as-installation-t.patch \ | 7 | file://0001-CMakeLists.txt-do-not-hardcode-lib-as-installation-t.patch \ |
| 8 | file://0001-support-link-against-libatomic-if-no-built-in-atomic.patch \ | 8 | file://0001-support-link-against-libatomic-if-no-built-in-atomic.patch \ |
| 9 | file://debugfix.patch \ | ||
| 9 | " | 10 | " |
| 10 | 11 | ||
| 11 | UPSTREAM_CHECK_COMMITS = "1" | 12 | UPSTREAM_CHECK_COMMITS = "1" |
| @@ -19,3 +20,10 @@ REQUIRED_DISTRO_FEATURES = 'vulkan' | |||
| 19 | inherit cmake features_check | 20 | inherit cmake features_check |
| 20 | 21 | ||
| 21 | FILES_${PN} += "${datadir}" | 22 | FILES_${PN} += "${datadir}" |
| 23 | |||
| 24 | # | ||
| 25 | # There is code to remove the prefix CMAKE_SOURCE_DIR from __FILENAME__ paths | ||
| 26 | # used for logging with LOGE in the code. We need to make this match the value we use | ||
| 27 | # in the debug source remapping from CFLAGS | ||
| 28 | # | ||
| 29 | EXTRA_OECMAKE = "-DCMAKE_DEBUG_SRCDIR=/usr/src/debug/${PN}/${EXTENDPE}${PV}-${PR}/" \ No newline at end of file | ||
