Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do you cross-compile libraries like SVL (Simple Vector Lib) or SDL_gfx for Linux/ARM cpu when you're on Win 64? I'm using "arm-none-linux-gnueabi-gcc" to compile my stuff, but I have no idea how to do it with external libs. Spent last 7 days googling, but no luck so far.

share|improve this question
Do the external libraries have configure scripts? Are you using GCC for your own compilation, or some other compiler? There are ways of specifying cross-compilation with configure scripts (though I've never done it). – Jonathan Leffler Jun 24 '10 at 1:00
@Jonathan SVL is here: cs.cmu.edu/~ajw/public/dist/svl-1.5.tar.gz it has some makefiles but no configs. Yes, I'm using GCC to compile my programs. – jack moore Jun 24 '10 at 1:18
SVL is interesting; it is old (2002) and has a non-standard means of configuration (as you say, no ./configure). You run 'make' to find out the supported platforms (it doesn't list ARM); you run 'make OSX' for MacOS X (fortunately, it is not Pyramid OSX), and then 'make' again. It didn't actually compile on MacOS X 10.6.4; problems with an overload of 'abs()'. So, you would have to devise a set of rules for ARM, and put them in makefiles/config-ARM.mf, and the rules would ensure that the C++ compiler is invoked with the correct cross-compilation flags. And then take it from there. Good luck! – Jonathan Leffler Jun 24 '10 at 5:39

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.