summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Borzenkov <snaury@gmail.com>2014-06-25 00:43:49 +0400
committerAlexey Borzenkov <snaury@gmail.com>2014-06-25 00:43:49 +0400
commitf88a2be609a5cd7c0f986263d6d04e16f02db47f (patch)
tree219ecf141de1101f3df0d9c6a9411d31d1a6476c
parent657f92f635dc9370ddb96c4b724e9a1344a67483 (diff)
downloadgreenlet-f88a2be609a5cd7c0f986263d6d04e16f02db47f.tar.gz
Enable support for SunStudio on 32-bit SunOS
-rw-r--r--slp_platformselect.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/slp_platformselect.h b/slp_platformselect.h
index 58fad3e..b9a8bce 100644
--- a/slp_platformselect.h
+++ b/slp_platformselect.h
@@ -26,6 +26,8 @@
#include "platform/switch_sparc_sun_gcc.h" /* SunStudio on amd64 */
#elif defined(__SUNPRO_C) && defined(__amd64__) && defined(sun)
#include "platform/switch_amd64_unix.h" /* SunStudio on amd64 */
+#elif defined(__SUNPRO_C) && defined(__i386__) && defined(sun)
+#include "platform/switch_x86_unix.h" /* SunStudio on x86 */
#elif defined(__GNUC__) && defined(__s390__) && defined(__linux__)
#include "platform/switch_s390_unix.h" /* Linux/S390 */
#elif defined(__GNUC__) && defined(__s390x__) && defined(__linux__)