SWDEV-366831 - Compile time flag to switch between #warning and #error message
Using backward compatibility paths will provide an #error message. Compile time option added to enable/disable the #error message. Disabling the same will provide a #warning message Change-Id: I45f987b572a306036a72525d2b90d366459117ad
This commit is contained in:
@@ -22,11 +22,18 @@
|
||||
#ifndef @include_guard@
|
||||
#define @include_guard@
|
||||
|
||||
#if defined(__GNUC__)
|
||||
#ifndef ROCM_HEADER_WRAPPER_WERROR
|
||||
#define ROCM_HEADER_WRAPPER_WERROR @deprecated_error@
|
||||
#endif
|
||||
#if ROCM_HEADER_WRAPPER_WERROR /* ROCM_HEADER_WRAPPER_WERROR 1 */
|
||||
#error "This file is deprecated. Use file from include path /opt/rocm-ver/include/ and include as rdc/@header_name@"
|
||||
#else /* ROCM_HEADER_WRAPPER_WERROR */
|
||||
#if defined(__GNUC__)
|
||||
#warning "This file is deprecated. Use file from include path /opt/rocm-ver/include/ and include as rdc/@header_name@"
|
||||
#else
|
||||
#pragma message("This file is deprecated. Use file from include path /opt/rocm-ver/include/ and include as rdc/@header_name@")
|
||||
#endif
|
||||
#endif /* ROCM_HEADER_WRAPPER_WERROR */
|
||||
|
||||
@include_statements@
|
||||
|
||||
|
||||
Reference in New Issue
Block a user