diff options
-rw-r--r-- | documentation/sdk-manual/sdk-using.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/documentation/sdk-manual/sdk-using.xml b/documentation/sdk-manual/sdk-using.xml index d198836922..4a8b5811fb 100644 --- a/documentation/sdk-manual/sdk-using.xml +++ b/documentation/sdk-manual/sdk-using.xml | |||
@@ -1261,6 +1261,23 @@ | |||
1261 | your application using the Eclipse IDE and then use | 1261 | your application using the Eclipse IDE and then use |
1262 | the emulator to perform debugging. | 1262 | the emulator to perform debugging. |
1263 | Follow these steps to deploy the application. | 1263 | Follow these steps to deploy the application. |
1264 | <note> | ||
1265 | Currently, Eclipse does not support SSH port forwarding. | ||
1266 | Consequently, if you need to run or debug a remote | ||
1267 | application using the host display, you must create a | ||
1268 | tunneling connection from outside Eclipse and keep | ||
1269 | that connection alive during your work. | ||
1270 | For example, in a new terminal, run the following: | ||
1271 | <literallayout class='monospaced'> | ||
1272 | ssh -XY user_name@remote_host_ip | ||
1273 | </literallayout> | ||
1274 | After running the command, add the command to be executed | ||
1275 | in Eclipse's run configuration before the application | ||
1276 | as follows: | ||
1277 | <literallayout class='monospaced'> | ||
1278 | export DISPLAY=:10.0 | ||
1279 | </literallayout> | ||
1280 | </note> | ||
1264 | <orderedlist> | 1281 | <orderedlist> |
1265 | <listitem><para>Select "Debug Configurations..." from the | 1282 | <listitem><para>Select "Debug Configurations..." from the |
1266 | "Run" menu.</para></listitem> | 1283 | "Run" menu.</para></listitem> |