Skip to content

Commit 98b7de8

Browse files
authored
[SYCL] Set the bug report URL appropriately for dpc++ (#8905)
When llvm tools crash they inform the user to report bugs to the cmake-configurable `${BUG_REPORT_URL}`, which defaults to upstream llvm's github issue tracker. For dpc++ this should be the intel llvm upstream. I wasn't sure if editing the default in the CMakeLists.txt itself was too invasive, but could be convinced; for now the buildbot configure script is the place.
1 parent 22e2ca1 commit 98b7de8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

buildbot/configure.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,8 @@ def do_configure(args):
167167
"-DXPTI_ENABLE_WERROR={}".format(xpti_enable_werror),
168168
"-DSYCL_CLANG_EXTRA_FLAGS={}".format(sycl_clang_extra_flags),
169169
"-DSYCL_ENABLE_PLUGINS={}".format(';'.join(set(sycl_enabled_plugins))),
170-
"-DSYCL_ENABLE_KERNEL_FUSION={}".format(sycl_enable_fusion)
170+
"-DSYCL_ENABLE_KERNEL_FUSION={}".format(sycl_enable_fusion),
171+
"-DBUG_REPORT_URL=https://github.com/intel/llvm/issues",
171172
]
172173

173174
if args.l0_headers and args.l0_loader:

0 commit comments

Comments
 (0)