리눅스 분류
arm 크로스 컴파일 오류
작성자 정보
- 복제자 작성
- 작성일
컨텐츠 정보
- 1,859 조회
- 0 추천
- 목록
본문
openssl 을 사용한 클라이언트를 EMPOS2 보드에 올리려 합니다.
현재 EMPOS2는 CPU를 Marvell PXA255를 사용하고 있는데 클라이언트를 암으로 컴파일 하던 도중 이 CPU에 대한 자료가 없다고 오류가 뜹니다.
" /usr/include/openssl/opensslconf.h:27: #error "This openssl-devel package does not work your architecture?" "
제가 생각한 것이 맞는것인지는 모르겠지만 이 오류를 해결하려면 어떻게 해야 할까요?
위 오류에 써있는 경로의 소스중 오류 부분을 보면
#if defined(__i386__)
#include "opensslconf-i386.h"
#elif defined(__ia64__)
#include "opensslconf-ia64.h"
#elif defined(__powerpc64__)
#include "opensslconf-ppc64.h"
#elif defined(__powerpc__)
#include "opensslconf-ppc.h"
#elif defined(__s390x__)
#include "opensslconf-s390x.h"
#elif defined(__s390__)
#include "opensslconf-s390.h"
#elif defined(__x86_64__)
#include "opensslconf-x86_64.h"
#else
#error "This openssl-devel package does not work your architecture?"
#endif
이러 합니다. 맞는 아키택쳐 를 찾지 못한다 하였는데 이 아키택쳐를 어떻게 구할수 있을까요? 아니면 이 문제를 해결할 다른 방법이 있나요? 고수님들의 많은 관심 부탁 드립니다.
*추가로 include 폴더에 소스 윗부분에 있는 'opensslconf-i386.h' 파일은 있지만 나머지 파일은 없습니다. 나머지 파일들은 어떻게 구해야 하나요?
현재 EMPOS2는 CPU를 Marvell PXA255를 사용하고 있는데 클라이언트를 암으로 컴파일 하던 도중 이 CPU에 대한 자료가 없다고 오류가 뜹니다.
" /usr/include/openssl/opensslconf.h:27: #error "This openssl-devel package does not work your architecture?" "
제가 생각한 것이 맞는것인지는 모르겠지만 이 오류를 해결하려면 어떻게 해야 할까요?
위 오류에 써있는 경로의 소스중 오류 부분을 보면
#if defined(__i386__)
#include "opensslconf-i386.h"
#elif defined(__ia64__)
#include "opensslconf-ia64.h"
#elif defined(__powerpc64__)
#include "opensslconf-ppc64.h"
#elif defined(__powerpc__)
#include "opensslconf-ppc.h"
#elif defined(__s390x__)
#include "opensslconf-s390x.h"
#elif defined(__s390__)
#include "opensslconf-s390.h"
#elif defined(__x86_64__)
#include "opensslconf-x86_64.h"
#else
#error "This openssl-devel package does not work your architecture?"
#endif
이러 합니다. 맞는 아키택쳐 를 찾지 못한다 하였는데 이 아키택쳐를 어떻게 구할수 있을까요? 아니면 이 문제를 해결할 다른 방법이 있나요? 고수님들의 많은 관심 부탁 드립니다.
*추가로 include 폴더에 소스 윗부분에 있는 'opensslconf-i386.h' 파일은 있지만 나머지 파일은 없습니다. 나머지 파일들은 어떻게 구해야 하나요?
관련자료
-
이전
-
다음
댓글 0
등록된 댓글이 없습니다.