From 069ae2a179d50649d17f7b63272e79f5aa861d46 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Fri, 1 Sep 2017 03:58:45 -0400 Subject: [PATCH] Fix missing object factory of xlC on AIX --- config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.h b/config.h index e7b66798..7a3c982f 100644 --- a/config.h +++ b/config.h @@ -602,7 +602,7 @@ NAMESPACE_END #if defined(_MSC_VER) # define CRYPTOPP_NOINLINE_DOTDOTDOT # define CRYPTOPP_NOINLINE __declspec(noinline) -#elif defined(__GNUC__) +#elif defined(__GNUC__) || defined(__xlC__) # define CRYPTOPP_NOINLINE_DOTDOTDOT # define CRYPTOPP_NOINLINE __attribute__((noinline)) #else