Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

v0.11.10 build error on BeagleBone Black #6789

Closed
fivdi opened this issue Jan 1, 2014 · 2 comments
Closed

v0.11.10 build error on BeagleBone Black #6789

fivdi opened this issue Jan 1, 2014 · 2 comments

Comments

@fivdi
Copy link

fivdi commented Jan 1, 2014

The ./configure step of the v0.11.10 build process results in the following error on the BeagleBone Black:

Traceback (most recent call last):
  File "./configure", line 658, in <module>
    configure_node(output)
  File "./configure", line 455, in configure_node
    configure_arm(o)
  File "./configure", line 439, in configure_arm
    o['variables']['arm_float_abi'] = arm_float_abi
UnboundLocalError: local variable 'arm_float_abi' referenced before assignment

The error is occurs because the variable arm_flaot_abi has no value on line 439 of configure. In this case, it doesn't have a value as it wasn't assigned one five lines previously on line 434. Changing line 434 from:

    'default'

to:

    arm_float_abi = 'default'

fixes the issue.

@indutny
Copy link
Member

indutny commented Jan 8, 2014

Thanks for reporting, fixed!

@fivdi
Copy link
Author

fivdi commented Jan 11, 2014

And thank you for fixing!

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants