You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the build of this project fails (see log below). I am on a clean Ubuntu machine (Python 2.7.3) - nothing installed except git. Did I miss a dependency?
markus@ubuntu:~/projekt/org.muhkuh.tools-flasher$ python mbs/mbs/
Processing package scons-local, version 2.5.0_1
Found package!
Processing package asciidoc, version 8.6.8_3
Found package!
Processing package exoraw, version 2.0.7_2
Looking for installed package exoraw_linux_x86_64.
Found package!
Processing package gcc-arm-none-eabi, version 4.7.2_2
Looking for installed package gcc-arm-none-eabi_linux_x86_64.
Found package!
Processing package gcc-arm-none-eabi, version 4.9.3_3
Looking for installed package gcc-arm-none-eabi_linux_x86_64.
Found package!
Filter mbs/templates/site_init.py -> targets/site_scons/site_init.py
Scanning "/home/markus/projekt/org.muhkuh.tools-flasher" for orphaned ".pyc" files.
No oprhaned ".pyc" files.
Running scons (/home/markus/.mbs/depack/org.scons/scons-local/scons-local-2.5.0_1/scons.py)
scons: Reading SConscript files ...
Build properties:
Copy the next lines to a file named "build.properties" to modify them.
--------8<--------8<--------8<----snip----8<--------8<--------8<--------
CFG_BUILD = "release"
-------->8-------->8-------->8----snap---->8-------->8-------->8--------
OSError: [Errno 2] No such file or directory:
File "/home/markus/projekt/org.muhkuh.tools-flasher/SConstruct", line 60:
env_arm9.CreateCompilerEnv('NETX500', ['arch=armv5te'])
File "/home/markus/.mbs/depack/org.scons/scons-local/scons-local-2.5.0_1/scons-local-2.5.0/SCons/Environment.py", line 224:
return self.method(*nargs, **kwargs)
File "/home/markus/projekt/org.muhkuh.tools-flasher/mbs/site_scons/scons_common.py", line 219:
proc = subprocess.Popen(aCmd, stdout=subprocess.PIPE)
File "/usr/lib/python2.7/subprocess.py", line 679:
errread, errwrite)
File "/usr/lib/python2.7/subprocess.py", line 1249:
raise child_exception
The text was updated successfully, but these errors were encountered:
the build of this project fails (see log below). I am on a clean Ubuntu machine (Python 2.7.3) - nothing installed except git. Did I miss a dependency?
We are using the pre-build Gnu ARM Embedded Toolchain 4.9 from here:
https://launchpad.net/gcc-arm-embedded/4.9
The Linux binaries are 32 bit and need the gcc-multilib package to run
(https://packages.ubuntu.com/xenial/gcc-multilib). A "sudo apt-get
install gcc-multilib" should fix the problem.
Thank you for the bug report. We should at least mention this in the
documentation. A 64 bit build of the toolchain would be a more elegant
solution. I will give it a try.
Best regards,
--
Chris
Hi,
the build of this project fails (see log below). I am on a clean Ubuntu machine (Python 2.7.3) - nothing installed except git. Did I miss a dependency?
markus@ubuntu:~/projekt/org.muhkuh.tools-flasher$ python mbs/mbs/
Processing package scons-local, version 2.5.0_1
Found package!
Processing package asciidoc, version 8.6.8_3
Found package!
Processing package exoraw, version 2.0.7_2
Looking for installed package exoraw_linux_x86_64.
Found package!
Processing package gcc-arm-none-eabi, version 4.7.2_2
Looking for installed package gcc-arm-none-eabi_linux_x86_64.
Found package!
Processing package gcc-arm-none-eabi, version 4.9.3_3
Looking for installed package gcc-arm-none-eabi_linux_x86_64.
Found package!
Filter mbs/templates/site_init.py -> targets/site_scons/site_init.py
Scanning "/home/markus/projekt/org.muhkuh.tools-flasher" for orphaned ".pyc" files.
No oprhaned ".pyc" files.
Running scons (/home/markus/.mbs/depack/org.scons/scons-local/scons-local-2.5.0_1/scons.py)
scons: Reading SConscript files ...
Build properties:
Copy the next lines to a file named "build.properties" to modify them.
--------8<--------8<--------8<----snip----8<--------8<--------8<--------
CFG_BUILD = "release"
-------->8-------->8-------->8----snap---->8-------->8-------->8--------
OSError: [Errno 2] No such file or directory:
File "/home/markus/projekt/org.muhkuh.tools-flasher/SConstruct", line 60:
env_arm9.CreateCompilerEnv('NETX500', ['arch=armv5te'])
File "/home/markus/.mbs/depack/org.scons/scons-local/scons-local-2.5.0_1/scons-local-2.5.0/SCons/Environment.py", line 224:
return self.method(*nargs, **kwargs)
File "/home/markus/projekt/org.muhkuh.tools-flasher/mbs/site_scons/scons_common.py", line 219:
proc = subprocess.Popen(aCmd, stdout=subprocess.PIPE)
File "/usr/lib/python2.7/subprocess.py", line 679:
errread, errwrite)
File "/usr/lib/python2.7/subprocess.py", line 1249:
raise child_exception
The text was updated successfully, but these errors were encountered: