//
// ExprOverrides.c
//
#import "ExprOverrides.h"
#include <stdio.h>
#include <math.h>
#include "TargetConditionals.h" //Allows compiler target conditionals to work, see http://bit.ly/tWarEW
#if !(TARGET_IPHONE_SIMULATOR)
int finite(double x){ return isfinite( x);}
double drem (double x, double y){return remainder(x, y);}
#endif
Hey shmimpie I just tried all of the things you've said and I got it to run on my device... But the sound is still not working... I am receiving messages from pd and the pdpatch opens but no sound on the device. I also checked the 'other c flags', making sure the Build Active Architecture Only was set to yes. Anything else I should try?
It looks like you're new here. If you want to get involved, click one of these buttons!