2016-07-28 6 views
0

Ich habe ein Open Embedded/Yocto-Projekt geerbt, für das ich das OS-Image ändern muss. Ich möchte ein neues Python-Modul hinzufügen - pycrypto. Das Projekt baut gut auf, bevor ich Änderungen vornehme.Wie sollte ich BitBake konfigurieren, um mein Python-Modul zu kompilieren?

ich habe folgende BitBake Rezept für PyCrypto hinzugefügt:

DESCRIPTION = "Python crypto" 
SECTION = "devel/python"   
LICENSE = "PD" 
SRC_URI = "https://pypi.python.org/packages/source/p/pycrypto/pycrypto-${PV}.tar.gz" 
SRC_URI[md5sum] = "55a61a054aa66812daf5161a0d5d7eda" 
SRC_URI[sha256sum] = "f2ce1e989b272cfcb677616763e0a2e7ec659effa67a88aa92b3a65528f60a3c" 
LIC_FILES_CHKSUM = "file://README;md5=453a552a607fd82384e25db312340e9a" 
S = "${WORKDIR}/pycrypto-${PV}" 
inherit setuptools 

als python-crypto_2.6.1.bb.

Ich benutze diese dann in meinem Haupt-O Bild Rezepte:

PYTHON_INSTALL = " \ 
    python-ctypes python-subprocess python-threading python-json \ 
    python-pyopenssl python-audio python-bsddb python-codecs python-compile python-compiler python-compression python-core python-crypt python-curses python-datetime python-db python-debugger python-dev python-difflib python-distutils python-doctest python-elementtree python-email python-fcntl python-gdbm python-hotshot python-html python-idle python-image python-io python-lang python-logging python-mailbox python-math python-mime python-mmap python-multiprocessing python-netclient python-netserver python-numbers python-pickle python-pkgutil python-pprint python-profile python-pydoc python-re python-readline python-resource python-robotparser python-shell python-smtpd python-sqlite3 python-sqlite3-tests python-stringold python-syslog python-terminal python-tests python-textutils python-tkinter python-unittest python-unixadmin python-xml python-xmlrpc python-zlib python-modules python-pyserial python-misc python-mysql python-crypto\ 
" 

Wenn die Build ausführt (bitbake my-image), alles gut zu gehen scheint, die Quellen für PyCrypto abruft. Jedoch nach der Kompilierung, konfigurieren Sie Versuche laufen das Kreuz kompilierte Programm - das funktioniert nicht (es ist für eine andere Architektur gebaut) und stoppt Bitbake erstellen mein Bild.

Hier ist das Logfile:

DEBUG: Executing shell function do_compile 
running build 
running build_py 
running build_ext 
running build_configure 
checking for gcc... arm-poky-linux-gnueabi-gcc -march=armv7-a -mfloat-abi=hard -mfpu=neon -mtune=cortex-a8 --sysroot=/media/parallels/build/tmp/sysroots/overo 
checking whether the C compiler works... yes 
checking for C compiler default output file name... a.out 
checking for suffix of executables... 
checking whether we are cross compiling... configure: error: in `/media/parallels/build/tmp/work/cortexa8hf-vfp-neon-poky-linux-gnueabi/python-crypto/2.6.1-r0/pycrypto-2.6.1': 
configure: error: cannot run C compiled programs. 
If you meant to cross compile, use `--host'. 
See `config.log' for more details 
Traceback (most recent call last): 
    File "setup.py", line 456, in <module> 
    core.setup(**kw) 
    File "/media/parallels/build/tmp/sysroots/x86_64-linux/usr/lib/python2.7/distutils/core.py", line 151, in setup 
    dist.run_commands() 
    File "/media/parallels/build/tmp/sysroots/x86_64-linux/usr/lib/python2.7/distutils/dist.py", line 953, in run_commands 
    self.run_command(cmd) 
    File "/media/parallels/build/tmp/sysroots/x86_64-linux/usr/lib/python2.7/distutils/dist.py", line 972, in run_command 
    cmd_obj.run() 
    File "/media/parallels/build/tmp/sysroots/x86_64-linux/usr/lib/python2.7/distutils/command/build.py", line 127, in run 
    self.run_command(cmd_name) 
    File "/media/parallels/build/tmp/sysroots/x86_64-linux/usr/lib/python2.7/distutils/cmd.py", line 326, in run_command 
    self.distribution.run_command(command) 
    File "/media/parallels/build/tmp/sysroots/x86_64-linux/usr/lib/python2.7/distutils/dist.py", line 972, in run_command 
    cmd_obj.run() 
    File "setup.py", line 251, in run 
    self.run_command(cmd_name) 
    File "/media/parallels/build/tmp/sysroots/x86_64-linux/usr/lib/python2.7/distutils/cmd.py", line 326, in run_command 
    self.distribution.run_command(command) 
    File "/media/parallels/build/tmp/sysroots/x86_64-linux/usr/lib/python2.7/distutils/dist.py", line 972, in run_command 
    cmd_obj.run() 
    File "setup.py", line 278, in run 
    raise RuntimeError("autoconf error") 
RuntimeError: autoconf error 
ERROR: python setup.py build_ext execution failed. 
WARNING: exit code 1 from a shell command. 
ERROR: Function failed: do_compile (log file is located at /media/parallels/build/tmp/work/cortexa8hf-vfp-neon-poky-linux-gnueabi/python-crypto/2.6.1-r0/temp/log.do_compile.6553) 

Ich baue aus einer x64-Host und Targeting einen ARM-Prozessor.

Der Hinweis in der Protokolldatei scheint vernünftig - "Wenn Sie Kreuz kompilieren wollten, verwenden Sie` --host '. " - Das einzige Problem ist wo verwende ich --host?

Auch ist es ein wenig beunruhigend, dass eine Suche in den vorhandenen Projektquellen keine anderen Instanzen von --host zeigt, die verwendet werden, und alles für ARM baut, gerade gut, also mag diese Nachricht mich in die Irre führen.

Kann jemand mit der Konfiguration von BitBake/automake/was auch immer-Teil-der-Open-Embedded-Toolchain helfen, so dass, nachdem mein Modul Cross kompiliert wurde, es nicht versuchen, es auf meinem Host-Rechner auszuführen (falsch die Architektur)?

Danke!

Antwort

Verwandte Themen