I have been trying to integrate GSL (Gnu Scientific Library) into an iPhone project using Xcode.

The challenge is GSL has all the modules in different folders, yet when their header files are reference, they often reference instead of or .

At least with I could use Xcode's recursive header file search to find it. But with , basically file not found.

Does anyone have an easy way to address the hierarchical GSL structure to compile into Xcode?

I can do it the tedious way of fixing all the #INCLUDE lines but hoping there is a better alternative. This way, I can more easily update GSL when changes are made by the community.

NOTE: I found Xcode needs to find the right header file locations (make sure to adjust your TARGET Build settings, not just your Project Build settings).

link|improve this question
1  
What is about license incompatibilites between GPL and Apple's terms of service? See iphonedevsdk.com/forum/iphone-sdk-development/… and zdnet.com/blog/open-source/no-gpl-apps-for-apples-app-store/… – Kay Apr 11 '11 at 19:30
any luck so far? – Rasman May 24 '11 at 1:14
feedback

1 Answer

You may be able to use grep and sed to replace all of the header lines in the gsl package.

using grep and sed to find and replace a string

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.