diff options
| -rw-r--r-- | Jamrules.jam | 8 | 
1 files changed, 6 insertions, 2 deletions
| diff --git a/Jamrules.jam b/Jamrules.jam index 3575406..5532181 100644 --- a/Jamrules.jam +++ b/Jamrules.jam @@ -1,6 +1,6 @@  # Rules for Jamfile.jam -if ( $(toolset:I=^mingw) || $(toolset:I=^gcc) || $(toolset:I=^bada) || $(toolset:I=^android) ) +if ( $(toolset:I=^mingw) || $(toolset:I=^gcc) || $(toolset:I=^bada) || $(toolset:I=^android) || $(toolset:I=^blackberry) )  {  	if ( $(toolset:I=^gcc) )  	{ @@ -10,6 +10,10 @@ if ( $(toolset:I=^mingw) || $(toolset:I=^gcc) || $(toolset:I=^bada) || $(toolset      {  		GCCPATH = "%$(toolset)_PATH%\\Tools\\Toolchains\\ARM\\bin\\arm-bada-eabi-" ;      } +    else if ( $(toolset:I=^blackberry) ) +    { +		GCCPATH = "%$(toolset)_PATH%\\host\\win32\\x86\\usr\\bin\\ntoarmv7-" ; +    }      else if ( $(toolset:I=^android) )      {  		GCCPATH = "%$(toolset)_PATH%\\bin\\arm-linux-androideabi-" ; @@ -717,7 +721,7 @@ if ( $(UNIX) )  }  else  { -	if ( $(toolset:I=(^xbox360|^ps3|wince|^bada$)) ) +	if ( $(toolset:I=(^xbox360|^ps3|wince|^bada|^blackberry$)) )  	{          RUNRESULT = "skiprun" ; | 
