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
What steps will reproduce the problem?
1. I unpack the source in /usr/src/pyo_version..
2. compile with "python ./setup.py build" and get a error message from linker
3. The behaviour is the same with different pyo versions
I get the error message:
pyo_0.6.2-src/src/objects/chorusmodule.c:507: undefined reference to `roundf'
and many other math functions (powf, sinf etc.) too. The above error message is
the last one from the list i get.
What version of the product are you using? On what operating system?
I use Mageia 1, 64 bit with python 2.7
I try several options for compiling e.g. --use-double but ever the same errors.
Can anyone help on this issue. Please feel free to ask more, may I can help to
solve this.
Many thanks in advance.
FM
Original issue reported on code.google.com by franky.3...@googlemail.com on 11 Oct 2012 at 7:54
The text was updated successfully, but these errors were encountered:
I solve this problem by adding a following line to setup.py libraries+=['m']
It configure liniker to link with lm (math library).
The diff is:
--- setup.py 2016-10-17 21:34:18.130941454 +0700
+++ setup_patched.py 2016-10-17 21:33:44.380942458 +0700
@@ -150,6 +150,7 @@
if build_with_jack_support:
libraries.append('jack')
Original issue reported on code.google.com by
franky.3...@googlemail.com
on 11 Oct 2012 at 7:54The text was updated successfully, but these errors were encountered: