Skip to content

Commit

Permalink
- fix personality switch for ppc and some more architectures
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianschroeter committed Jan 27, 2012
1 parent 333e0c2 commit 259696c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build
Expand Up @@ -735,7 +735,10 @@ trap fail_exit EXIT

case `perl -V:archname` in
*x86_64*) PERSONALITY_SYSCALL=135 ;;
*i?86*) PERSONALITY_SYSCALL=136 ;;
alpha*) PERSONALITY_SYSCALL=324 ;;
sparc*) PERSONALITY_SYSCALL=191 ;;
*i?86*|ppc*|arm*|sh4|cris|m68k|s390*|unicore32|microblaze) PERSONALITY_SYSCALL=136 ;;
*) echo "ARCHITECTURE PERSONALITY IS UNKNOWN"; exit 1;;
esac

shopt -s nullglob
Expand Down

0 comments on commit 259696c

Please sign in to comment.