On Friday 27 February 2009 05:34:08 Michal Simek wrote: > I am getting this error. I haven't read VHDL microblaze code but I > believe that we don't hyperthreading > and I hope that a lot of cpu don't have it too. It is x86 specific test > and there is arch x86 asm code. > There should be any arch conditional compilation. > For my case when I cross compile for different arch compilation failed. > > Any idea how to fix it?
we address this by adding #ifdef checks to the source:
#if defined(__i386__)
... test ...
#else
int main() { puts("test is not supported on your arch"); }
#endif
-mike
signature.asc
Description: This is a digitally signed message part.
------------------------------------------------------------------------------ Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA -OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise -Strategies to boost innovation and cut costs with open source participation -Receive a $600 discount off the registration fee with the source code: SFAD http://p.sf.net/sfu/XcvMzF8H
_______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
