centos 7에 PHP7 확장 protobuf를 설치하는 방법은 무엇입니까?
현재 서버에 php의 protobuf를 설치하려고 하는데 설치에 실패했습니다!
제가 사용하는 확장 프로그램은 https://github.com/allegro/ph... ?
컴파일 및 설치 과정에서 phpize와 ./configure를 전달했는데, make를 해보니 오류가 보고되었습니다!
일부 오류는 다음과 같습니다.
<code>/home/lvyun/php-protobuf/protobuf.c: In function ?.b_parse_field_value /home/lvyun/php-protobuf/protobuf.c:1004:20: error: lvalue required as leof assignment Z_TYPE_P(value) = IS_DOUBLE; ^ /home/lvyun/php-protobuf/protobuf.c:1009:20: error: lvalue required as leof assignment Z_TYPE_P(value) = IS_LONG; ^ /home/lvyun/php-protobuf/protobuf.c:1014:20: error: lvalue required as leof assignment Z_TYPE_P(value) = IS_LONG; ^ /home/lvyun/php-protobuf/protobuf.c:1019:20: error: lvalue required as leof assignment Z_TYPE_P(value) = IS_DOUBLE; ^ /home/lvyun/php-protobuf/protobuf.c:1024:20: error: lvalue required as leof assignment Z_TYPE_P(value) = IS_LONG; ^ /home/lvyun/php-protobuf/protobuf.c:1029:22: error: ?.S_BOOL?.undeclause in this function) Z_TYPE_P(value) = IS_BOOL; ^ /home/lvyun/php-protobuf/protobuf.c:1034:20: error: lvalue required as leof assignment Z_TYPE_P(value) = IS_LONG;</code>
그 이유가 무엇인지 알려주세요. 확장버전이 따라오지 못하는 걸까요? 아니면 일부 종속성이 설치되지 않았기 때문입니까?
이 확장 패키지를 php7에 설치할 수 없다면 어떤 다른 확장을 설치할 수 있나요?
centos 7에 PHP7 확장 protobuf를 설치하는 방법은 무엇입니까?
현재 서버에 php의 protobuf를 설치하려고 하는데 설치에 실패했습니다!
제가 사용하는 확장 프로그램은 https://github.com/allegro/ph... ?
컴파일 및 설치 과정에서 phpize와 ./configure를 전달했는데, make를 해보니 오류가 보고되었습니다!
일부 오류는 다음과 같습니다.
<code>/home/lvyun/php-protobuf/protobuf.c: In function ?.b_parse_field_value /home/lvyun/php-protobuf/protobuf.c:1004:20: error: lvalue required as leof assignment Z_TYPE_P(value) = IS_DOUBLE; ^ /home/lvyun/php-protobuf/protobuf.c:1009:20: error: lvalue required as leof assignment Z_TYPE_P(value) = IS_LONG; ^ /home/lvyun/php-protobuf/protobuf.c:1014:20: error: lvalue required as leof assignment Z_TYPE_P(value) = IS_LONG; ^ /home/lvyun/php-protobuf/protobuf.c:1019:20: error: lvalue required as leof assignment Z_TYPE_P(value) = IS_DOUBLE; ^ /home/lvyun/php-protobuf/protobuf.c:1024:20: error: lvalue required as leof assignment Z_TYPE_P(value) = IS_LONG; ^ /home/lvyun/php-protobuf/protobuf.c:1029:22: error: ?.S_BOOL?.undeclause in this function) Z_TYPE_P(value) = IS_BOOL; ^ /home/lvyun/php-protobuf/protobuf.c:1034:20: error: lvalue required as leof assignment Z_TYPE_P(value) = IS_LONG;</code>
그 이유가 무엇인지 알려주세요. 확장버전이 따라오지 못하는 걸까요? 아니면 일부 종속성이 설치되지 않았기 때문입니까?
이 확장 패키지를 php7에 설치할 수 없다면 어떤 다른 확장을 설치할 수 있나요?
https://github.com/google/pro...
공식 라이브러리를 바로 이용할 수는 없나요?