Re: [Discuss-gnuradio] Latest Gnuradio git won't compile on OS X

2014-10-31 Thread Johnathan Corgan
On 10/31/2014 09:04 AM, Michael Dickens wrote: > I just fixed this issue within MacPorts < > https://trac.macports.org/changeset/127653 >, which will be live by around > 12:30 PM/US/Eastern. I ended up following Stephan’s lead and moving the > shuffle index values directly into the function cal

Re: [Discuss-gnuradio] Latest Gnuradio git won't compile on OS X

2014-10-31 Thread Michael Dickens
I just fixed this issue within MacPorts < https://trac.macports.org/changeset/127653 >, which will be live by around 12:30 PM/US/Eastern. I ended up following Stephan’s lead and moving the shuffle index values directly into the function call; nothing else made clang happy. Given that these co

Re: [Discuss-gnuradio] Latest Gnuradio git won't compile on OS X

2014-10-25 Thread West, Nathan
That looks like the exact same error and will have the exact same resolution. We'll fix it before the next release. If you don't feel comfortable making the changes discussed in this thread then I suggest you stick with a package manager (macports) and heed Michael Dickens' advice: http://lists.gnu

Re: [Discuss-gnuradio] Latest Gnuradio git won't compile on OS X

2014-10-24 Thread 奕佑
I would like to trying to help. I'm using yosemite now. I install dependency using macports, but und & gnu radio install by manually. Attach is the command that using llvm-gcc clang. They are run into same error, but I cannot telling why. And I try gcc4.9 install by macport didn't have the problem,

Re: [Discuss-gnuradio] Latest Gnuradio git won't compile on OS X

2014-10-24 Thread Stefan Oltmanns
See: http://llvm.org/bugs/show_bug.cgi?id=9665 When I understand that correctly it´s a bug in the intel avx header files. The solution is either use other header files or do not use const int, but literal values or enum. Best regards Stefan Am 24.10.2014 21:15, schrieb West, Nathan: > The intel

Re: [Discuss-gnuradio] Latest Gnuradio git won't compile on OS X

2014-10-24 Thread West, Nathan
The intel docs specify that function as taking a const int, so I'm not sure why that wouldn't work but the literal value would. Although I'm basically fine with using the literal value, I feel like the "correct" thing to do is use a const int here. At a minimum I'd like to at least understand what'

Re: [Discuss-gnuradio] Latest Gnuradio git won't compile on OS X

2014-10-23 Thread Michael Dickens
Oh goody! I have a MacPorts ticket with this issue, and my AVX Mac is currently unavailable for fixing this. Maybe somebody (Nathan? Tom?) can figure out the correct fix? - MLD On Oct 23, 2014, at 1:52 PM, Stefan Oltmanns wrote: > Adding const did not fix the problem, so I gave the 0xdd / 0

Re: [Discuss-gnuradio] Latest Gnuradio git won't compile on OS X

2014-10-23 Thread Stefan Oltmanns
Adding const did not fix the problem, so I gave the 0xdd / 0x88 directly as shuffle mask parameter in _mm256_shuffle_ps, then it compiles without any problems (same fix for volk_32fc_deinterleave_imag_32f.h) Thank you very much Stefan Am 23.10.2014 19:50, schrieb West, Nathan: > On Thu, Oct 23, 2

Re: [Discuss-gnuradio] Latest Gnuradio git won't compile on OS X

2014-10-23 Thread West, Nathan
On Thu, Oct 23, 2014 at 12:37 PM, Stefan Oltmanns wrote: > I just got the latest git version of gnuradio and tried to compile, but > I get compilation errors resulting from avxintrin.h: > > http://pastebin.com/uq4uGeNs > > These errors seems to be common and result from using non-standard > GCC-ex

[Discuss-gnuradio] Latest Gnuradio git won't compile on OS X

2014-10-23 Thread Stefan Oltmanns
I just got the latest git version of gnuradio and tried to compile, but I get compilation errors resulting from avxintrin.h: http://pastebin.com/uq4uGeNs These errors seems to be common and result from using non-standard GCC-extensions that clang does not support. Any ideas? ___