web-dev-qa-db-ja.com

シングルクロスコンパイルが機能しないのはなぜですか?エラー:bash:./test 1:そのようなファイルまたはディレクトリはありません

Ubuntu 14.10 x64 PCを使用してクロスコンパイルし、Beaglebone Blackでプログラムを実行していますが、コンパイルしたプログラムをBBBで実行しようとすると、奇妙なエラーが発生します。

以下のコマンドラインは、すべての手順をどのように行っているかを示しています。

  • PC:コードを記述する→arm-linux-gnueabi-gccでコンパイルする→sftpを介してBBBに転送する

    cleber@cleber:~/test1$ nano ./test1/test1.c
    
    cleber@cleber:~/test1$ more test1.c
    #include "stdio.h"
    
    int main(void) {
      printf("Hello world !\n");
      return 0;
    }
    
    cleber@cleber:~/test1$ arm-linux-gnueabi-gcc test1.c -o test1
    
    cleber@cleber:~/test1$ file test1
    test1: ELF 32-bit LSB executable, ARM, EABI5 version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.32, BuildID[sha1]=ee8c02a051254b2acb7b9054e4599a495da26415, not stripped
    
    cleber@cleber:~/test1$ sftp [email protected]
    [email protected]'s password: 
    Connected to 192.168.7.2.
    sftp> put /home/cleber/test1/* /home/debian/test1
    Uploading /home/cleber/test1/test1 to /home/debian/test1/test1
    /home/cleber/test1/test1                                                                                      100% 8416     8.2KB/s   00:00    
    Uploading /home/cleber/test1/test1.c to /home/debian/test1/test1.c
    /home/cleber/test1/test1.c                                                                                    100%   81     0.1KB/s   00:00    
    sftp> exit
    
  • Beaglebone/SSH経由:(受け取ったコンパイル済みコードの実行)

    debian@beaglebone:~/test1# chmod +x test1
    
    debian@beaglebone:~/test1$ ls -la
    total 32
    drwxr-xr-x  2 debian debian 4096 Mar  2 01:13 .
    drwxr-xr-x 13 debian debian 4096 Mar  2 01:08 ..
    -rwxr-xr-x  1 debian debian 8416 Mar  2 01:11 test1
    -rw-r--r--  1 debian debian   81 Mar  2 01:11 test1.c
    
    debian@beaglebone:~/test1$ ./test1
    -bash: ./test1: No such file or directory
    
  • しかし、BBBでコンパイルすると動作します。

    debian@beaglebone:~/test1$ gcc test1.c -o test12
    
    debiandebian@beaglebone:~/test1$ ls -la
    total 32
    drwxr-xr-x  2 debian debian 4096 Mar  2 01:30 .
    drwxr-xr-x 13 debian debian 4096 Mar  2 01:08 ..
    -rwxr-xr-x  1 debian debian 8416 Mar  2 01:11 test1
    -rw-r--r--  1 debian debian   81 Mar  2 01:11 test1.c
    -rwxr-xr-x  1 debian debian 5048 Mar  2 01:30 test12
    
    debian@beaglebone:~/test1$ ./test12
    Hello world !
    
    debian@beaglebone:~/Desktop/test1$ file test1 test12
    test1:  ELF 32-bit LSB executable, ARM, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.32, BuildID[sha1]=0xa0028cee2a4b255154907bcb499a59e41564a25d, not stripped
    test12: ELF 32-bit LSB executable, ARM, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.26, BuildID[sha1]=0x6a05d95c39cc59d2d407655778dc2ef6f53f02cd, not stripped
    
    debian@beaglebone:~/Desktop/test1$ ldd test1 test12
    test1:
        not a dynamic executable
    test12:
        libc.so.6 => /lib/arm-linux-gnueabihf/libc.so.6 (0xb6e1e000)
        /lib/ld-linux-armhf.so.3 (0xb6f15000)
    

X64 Archを使用して32ビットの実行可能ファイルをクロスコンパイルするため、この問題が発生する可能性がありますか? 32ビットのライブラリをいくつかインストールしましたが、正しくインストールしたかどうかはわかりません。それが問題の正しい原因かどうかさえわかりません。

以下の情報が役に立つかもしれません:

PC:

cleber@cleber:~/test1$ cat /etc/issue.net; uname -ar
Ubuntu 14.10
Linux cleber 3.16.0-44-generic #59-Ubuntu SMP Tue Jul 7 02:07:39 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux

BBB:

cat /etc/issue.net; uname -ar
Linux beaglebone 3.8.13-bone70 #1 SMP Fri Jan 23 02:15:42 UTC 2015 armv7l GNU/Linux

私はLinuxの初心者であり、このステップで立ち往生していますが、残念ながら、非常に早く解決する必要があります: '(ここで助けてもらいたいです!

Tks in advanced!

2
Cleber Marques

解決:

コードを静的にコンパイルするだけです:

PC:

cleber@cleber:~/test1$ arm-linux-gnueabi-gcc -static test1.c -o test1

cleber@cleber:~/test1$ sftp [email protected]
[email protected]'s password: 
Connected to 192.168.7.2.
sftp> put /home/cleber/test1/* /home/debian/test1
Uploading /home/cleber/test1/test1 to /home/debian/test1/test1
/home/cleber/test1/test1                                                                                      100% 8416     8.2KB/s   00:00    
Uploading /home/cleber/test1/test1.c to /home/debian/test1/test1.c
/home/cleber/test1/test1.c                                                                                    100%   81     0.1KB/s   00:00    
sftp> exit

BBB:

debian@beaglebone:~/test1$ ./test1
Hello world !

ご覧のとおり、クロスコンパイルされた実行可能ファイルtest1は静的です:test12は、比較のためにBBBでgccによってコンパイルされました。

debian@beaglebone:~/Desktop/test1$ ldd test1 test12
test1:
    not a dynamic executable
test12:
    libc.so.6 => /lib/arm-linux-gnueabihf/libc.so.6 (0xb6e12000)
    /lib/ld-linux-armhf.so.3 (0xb6f09000)

debian@beaglebone:~/Desktop/test1$ file test1 test12
test1:  ELF 32-bit LSB executable, ARM, version 1 (SYSV), statically linked, for GNU/Linux 2.6.32, BuildID[sha1]=0x8d34ee7f6f2798fa153dea185f77443d06b6ab61, not stripped
test12: ELF 32-bit LSB executable, ARM, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.26, BuildID[sha1]=0x6a05d95c39cc59d2d407655778dc2ef6f53f02cd, not stripped

助けてくれてありがとう!

1
Cleber Marques

私はまったく同じ問題を抱えていたので、私は次のことをしました

Sudo apt-get install g ++-arm-linux-gnueabihf

Sudo apt-get install gcc-arm-linux-gnueabihf

この後、上記のインストールされたディレクトリを指すようにEclipseでコンパイルツールを構成し、プログラムをコンパイルしました。

コンパイルした後、実行可能ファイルをbeagle bone black rev cにコピーし、コマンドラインで実行すると動作し始めました:)

0
user187144