Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Source 0.9 requires gLogging variable declared in order to link correctly #8

Open
GoogleCodeExporter opened this issue Jul 20, 2015 · 1 comment

Comments

@GoogleCodeExporter
Copy link

What steps will reproduce the problem?
1. svn checkout of the source
2. copy all *.h and *.m into your personal project

_gLogging can't be found.

just managed the definition in EXFLogging.h
from:
#define Debug(FMT,...)  if(!gLogging) ; else  NSLog(@"DEBUG: " FMT, 
##__VA_ARGS__)

to:
#define Debug(FMT,...)  if(1 == 2) ; else  NSLog(@"DEBUG: " FMT, ##__VA_ARGS__)

not so elegant as solution, but it works for tests.


Original issue reported on code.google.com by [email protected] on 30 Dec 2009 at 8:16

@GoogleCodeExporter
Copy link
Author

This "feature" described in documentation, read it first.

Original comment by ReznikSA on 19 Mar 2010 at 4:45

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant