Attachment added this time... ----- Original Message ----- > > Hi Luc, > > I posted the attached patch as an issue on your code.google.com eppic page. > It allows the eppic.so module to be built, loaded, and run scripts (at least > very simple ones). I'm presuming that there's no other arch-specific stuff > that needs to be done. > > Thanks, > Dave
--- eppic/applications/crash/eppic.c.orig +++ eppic/applications/crash/eppic.c @@ -1035,10 +1035,14 @@ _init() /* Register the command set. */ #ifdef PPC64 #define EPPIC_ABI ABI_PPC64 #else +#ifdef ARM64 +#define EPPIC_ABI ABI_ARM64 +#else #error eppic: Unkown ABI #endif #endif #endif +#endif #endif #endif #endif --- eppic/libeppic/eppic_api.h.orig +++ eppic/libeppic/eppic_api.h @@ -29,6 +29,7 @@ #define ABI_S390 4 #define ABI_S390X 5 #define ABI_PPC64 6 +#define ABI_ARM64 7 /* types of variables */ #define V_BASE 1
-- Crash-utility mailing list [email protected] https://www.redhat.com/mailman/listinfo/crash-utility
