2017-10-23 44 views
0

Android用OpenSSH 7.6p1をクロスコンパイルしようとしています。 getrrsetbyname.cで失敗します。ここでは、そのファイルの打ち鳴らす-出力です:Android用OpenSSHのクロスコンパイルでgetrrsetbyname.cが失敗する

(cd openbsd-compat && /Applications/Xcode.app/Contents/Developer/usr/bin/make) 
/Users/johannes/src/android_ssh/android_ndk_arm_api21/bin/clang -I/Users/johannes/src/android_ssh/prefix/include -pipe -Qunused-arguments -Wunknown-warning-option -Wall -Wpointer-arith -Wuninitialized -Wsign-compare -Wformat-security -Wsizeof-pointer-memaccess -Wno-pointer-sign -Wno-unused-result -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -fno-builtin-memset -fstack-protector-strong -I. -I.. -I. -I./.. -I~/src/android_ssh/prefix/include/openssl -DHAVE_CONFIG_H -c getrrsetbyname.c 
getrrsetbyname.c:219:12: error: incomplete definition of type 'struct state' 
     if ((_resp->options & RES_INIT) == 0 && res_init() == -1) { 
      ~~~~~^ 
getrrsetbyname.c:71:8: note: forward declaration of 'struct state' 
struct __res_state _res; 
    ^
../config.h:1785:21: note: expanded from macro '__res_state' 
#define __res_state state 
        ^
getrrsetbyname.c:219:24: error: use of undeclared identifier 'RES_INIT' 
     if ((_resp->options & RES_INIT) == 0 && res_init() == -1) { 
          ^
getrrsetbyname.c:71:20: error: tentative definition has type 'struct state' that is never completed 
struct __res_state _res; 
       ^
getrrsetbyname.c:71:8: note: forward declaration of 'struct state' 
struct __res_state _res; 
    ^
../config.h:1785:21: note: expanded from macro '__res_state' 
#define __res_state state 
        ^
3 errors generated. 
make[1]: *** [getrrsetbyname.o] Error 1 
make: *** [openbsd-compat/libopenbsd-compat.a] Error 2 

だから、定数(RES_INIT)とシステムresolv.hで定義された少なくともMacOSで、おそらくまた、Linux上で、ある構造体を(struct __res_state)、欠けています。しかし、AndroidのNDKのresolv.hはそれらを定義していません。

私は何かが紛失していますか、またはgetrssetbyname.cは、現在の形式ではAndroid NDKと互換性がありませんか?

答えて

0

OpenSSH for Androidのクロスコンパイルに興味がある人は、Termuxプロジェクト、特にtermux-packagesに注目してください。

関連する問題