소스 검색

build: if uname says x86_64 but getconf LONG_BIT returns 32, we’re on i386.

legacy
Sam Hocevar sam 11 년 전
부모
커밋
7cae8968cb
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. +4
    -1
      build/run-bitten.sh

+ 4
- 1
build/run-bitten.sh 파일 보기

@@ -98,7 +98,10 @@ esac
append "name = $name"
processor="`uname -m`"
case "$processor" in
x86_64) processor="amd64" ;;
x86_64) processor="amd64"
if test "`getconf LONG_BIT 2>/dev/null`" = 32; then
processor="i386"
fi ;;
i*86) processor="i386" ;;
esac
# Windows defines a lot of crazy shit, try to make sense of it


불러오는 중...
취소
저장