diff options
author | SaeHie Park <saehie.park@gmail.com> | 2016-11-23 19:12:18 +0900 |
---|---|---|
committer | Jan Vorlicek <janvorli@microsoft.com> | 2016-11-23 11:12:18 +0100 |
commit | 4d10630a7de0a7b3d02a910d37834e3534ce5605 (patch) | |
tree | ead0e83ce7063c4b50773a5cd083765e98017282 /src | |
parent | f1f820681bb1c1e008aef85fb5354b8968266eb3 (diff) | |
download | coreclr-4d10630a7de0a7b3d02a910d37834e3534ce5605.tar.gz coreclr-4d10630a7de0a7b3d02a910d37834e3534ce5605.tar.bz2 coreclr-4d10630a7de0a7b3d02a910d37834e3534ce5605.zip |
[x86/Linux] Fix unknown type name 'ExInfo' (#8274)
Fix compile error for x86/Linux
- need to undefine ELIMINATE_FEF by adding !defined(FEATURE_PAL)
Diffstat (limited to 'src')
-rw-r--r-- | src/vm/stackwalk.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vm/stackwalk.h b/src/vm/stackwalk.h index 004d673a2a..f8bd519106 100644 --- a/src/vm/stackwalk.h +++ b/src/vm/stackwalk.h @@ -36,14 +36,14 @@ class AppDomain; // on the stack. The FEF is used for unwinding. If not defined, the unwinding // uses the exception context. #define USE_FEF // to mark where code needs to be changed to eliminate the FEF -#if defined(_TARGET_X86_) +#if defined(_TARGET_X86_) && !defined(FEATURE_PAL) #undef USE_FEF // Turn off the FEF use on x86. #define ELIMINATE_FEF #else #if defined(ELIMINATE_FEF) #undef ELIMINATE_FEF #endif -#endif // _86_ +#endif // _TARGET_X86_ && !FEATURE_PAL //************************************************************************ // Enumerate all functions. |