GNUstep 调试条件开关

 

 

  
  
  
  
  1. #include "say.h" 
  2. #include <Foundation/Foundation.h> 
  3.  
  4. int main(void)  
  5.         id speaker; 
  6.         NSString *name = @"GNUstep !"
  7.         NSAutoreleasePool *pool; 
  8.          
  9.         pool = [NSAutoreleasePool new]; 
  10.         speaker = [[Say alloc] init]; 
  11.          
  12.         [speaker sayHello]; 
  13.         [speaker sayHelloTo: name]; 
  14.          
  15.         RELEASE(speaker); 
  16.         RELEASE(pool); 
  17.          
  18.         #ifdef DEBUG 
  19.             NSLog(@"%@\n", @"Debug Now"); 
  20.         #endif 
  21.          
  22.         return 0; 

其中,

  1. #ifdef DEBUG 
  2.             NSLog(@"%@\n", @"Debug Now"); 
  3. #endif

为调试开关

make debug=yes打开

缺省make,debug为no

使用示例:

你可能感兴趣的:(GNUStep,调试开关)