From c2ba05fbd6ddc7efad8fe58aed79db4b456782a1 Mon Sep 17 00:00:00 2001 From: Jonathan Protzenko Date: Wed, 19 Aug 2015 10:51:07 -0700 Subject: [PATCH] Add a URL parameter to try out compilation with GCC. --- rt/cloud.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rt/cloud.ts b/rt/cloud.ts index 75b01797..200893f3 100644 --- a/rt/cloud.ts +++ b/rt/cloud.ts @@ -817,6 +817,8 @@ module TDev.Cloud { } var config = isFota() ? "ws-fota" : "ws"; + if (document.location.href.match(/usegcc=1/)) + config += "-gcc"; Util.httpPostJsonAsync(getPrivateApiUrl("me/installed/" + guid + "/compile"), { config: config, source: cppSource,