Hi all,

 

Is it possible to write a bjam script to define a macro based on the combination of compiler and platform.  Basically I want to have a variable be assigned like this:

 

If ( 64_bit compiler config) {

Sizeof_int = 8 ;

} else {

Sizeof_int = 4 ;

}

 

 

Is it possible ?