From 2acb29c3e9aeeab5292d6481e8d3bf583ae110ab Mon Sep 17 00:00:00 2001 From: SaeHie Park Date: Mon, 28 Nov 2016 23:03:29 +0900 Subject: [x86/Linux] Fix compile error in zapcode (#8294) Fix compile error for x86/Linux - Remove ZapUnwindInfo WIN64EXCEPTIONS codes for x86/Linux - fix "use of undeclared identifier 'NEED_TO_PORT_THIS_ONE'" - fix "unknown type name 'UNWIND_INFO'" - fix "use of undeclared identifier 'READYTORUN_HELPER_PersonalityRoutineFilterFunclet'" --- src/zap/zapcode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/zap/zapcode.cpp b/src/zap/zapcode.cpp index adad361de0..167c0ed912 100644 --- a/src/zap/zapcode.cpp +++ b/src/zap/zapcode.cpp @@ -1130,7 +1130,7 @@ void ZapUnwindInfo::Save(ZapWriter * pZapWriter) pZapWriter->Write(&runtimeFunction, sizeof(runtimeFunction)); } -#ifdef WIN64EXCEPTIONS +#if defined(WIN64EXCEPTIONS) && !defined(_TARGET_X86_) // Compare the unwind infos by their offset int __cdecl ZapUnwindInfo::CompareUnwindInfo(const void* a_, const void* b_) { -- cgit v1.2.3