You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit adds the -fpreview-breaking-changes option to supersede the
SYCL2020_CONFORMANT_APIS preprocessor macro. This new option allows the
SYCL library to also make breaking changes outside a SYCL major release
by guarding breaking changes behind the __INTEL_PREVIEW_BREAKING_CHANGES
macro. When
-fpreview-breaking-changes is used together with -fsycl the compiled
program is linked against a variant of the SYCL library with the
__INTEL_PREVIEW_BREAKING_CHANGES macro defined.
---------
Signed-off-by: Larsen, Steffen <[email protected]>
parser.add_argument("--disable-preview-lib", action='store_true', help="Disable building of the SYCL runtime major release preview library")
259
265
parser.add_argument("--disable-fusion", action="store_true", help="Disable the kernel fusion JIT compiler")
260
266
parser.add_argument("--add_security_flags", type=str, choices=['none', 'default', 'sanitize'], default=None, help="Enables security flags for compile & link. Two values are supported: 'default' and 'sanitize'. 'Sanitize' option is an extension of 'default' set.")
0 commit comments