public static NPath GetLinkerPath()
 {
     string[] append = new string[] { "tools", "arm-linux-gnueabi-gcc-4.6", "bin", "arm-linux-gnueabi-g++" };
     return(SDKDirectory.Combine(append));
 }
 public static string GetSysroot()
 {
     string[] append = new string[] { "platforms", "tizen-2.4", "mobile", "rootstraps", "mobile-2.4-device.core" };
     return(SDKDirectory.Combine(append).ToString());
 }
 public static string GetCompilerPrefix()
 {
     string[] append = new string[] { "tools", "arm-linux-gnueabi-gcc-4.6", "bin", "arm-linux-gnueabi-" };
     return(SDKDirectory.Combine(append).ToString());
 }