PageRenderTime 46ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/LinuxApp/readme/readme.html

https://bitbucket.org/pwr235728/avl_tree
HTML | 77 lines | 58 code | 19 blank | 0 comment | 0 complexity | 93b479dbe0dfb219c0bfef46fe55ea05 MD5 | raw file
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset='utf-8'>
  5. <link rel="stylesheet" type="text/css" href="stylesheet.css" media="screen">
  6. <title>Getting Started</title>
  7. </head>
  8. <body>
  9. <div class="container">
  10. <div id="header">
  11. <h1>Getting Started</h1>
  12. <h2>Visual C++ for Linux Development</h2>
  13. </div>
  14. <table>
  15. <tr>
  16. <div id="main_content">
  17. <td>
  18. <div id="lpanel">
  19. <h1>Setting up your project for Linux Development</h1>
  20. <p>With this workload you can author C++ code for Linux servers, desktops and devices. You can manage your connections to these machines from within VS. VS will automatically copy and remotely build your sources and can launch your application with the debugger. Our project system supports targeting specific architectures, including ARM.</p>
  21. <img src="images\ArchOptions.gif"/>
  22. <h1>Connecting to Linux</h1>
  23. <h2>Prerequisites</h2>
  24. <p>Today we only support building remotely on the Linux target machine. We are not limited by specific Linux distros but we do have dependencies on the presence of some tools. Specifically, we need openssh-server, g++, gdb and gdbserver. Use your favorite package manager to install them, e.g. on Debian based systems: sudo apt-get install openssh-server g++ gdb gdbserver</p>
  25. <h2>First connection</h2>
  26. <p>The first time you target a Linux machine you will be prompted for connection information. This is triggered by building the project.</p>
  27. <img src="images\firstconnection.png"/>
  28. <h2>Adding and removing connections</h2>
  29. <p>To add a new connection, go to Tools > Options and search for Connection, Connection Manager will be under Cross Platform. From here you can add and remove connections.</p>
  30. <img src="images\ManageConnections.gif"/>
  31. <p>To change which connection a project is using go to the project properties general settings and update the Remote Build Machine option.</p>
  32. <img src="images\ChangeRemote.gif"/>
  33. <h1>Project Properties</h1>
  34. <p>All of the options necessary to control C++ compilation are exposed on the project properies pages. We'll cover a few specific to how things work for Linux. First under general settings, you will see the remote root is set to ~/projects/ by default and that we are setting the remote project directory to match our project name in that location. </p>
  35. <img src="images\OutputTypes.gif"/>
  36. <p>Looking at the General settings for the project, you can see how our output and intermediate directories were configured. Additionally, youll see that this project was configured as an application thus our executable is under bin/x64/Debug/ as ConsoleApplication1.out. Notice that for configuration types we also support static and dynamic libraries.</p>
  37. <p>Add additional library dependencies on the Linker > Input property page.</p>
  38. <img src="images\linker.png"/>
  39. <p>You can pass additional pre launch commands to the debugger to do things like launch graphical apps on the remote linux machine.</p>
  40. <img src="images\debuggerexport.png"/>
  41. <p>You can also send post build events to control remote behavior, as in this example that exports a gpio pin for use without requiring the executable run as super user.</p>
  42. <img src="images\postbuild.png"/>
  43. </div>
  44. </td>
  45. <td>
  46. <div id="rpanel">
  47. <h1>Resources</h1>
  48. <p>Check out the <a href="http://aka.ms/vslinux">VC++ for Linux Development page</a> where we will keep updates posted and provider more in depth details on usage.</p>
  49. <h1>Give us feedback</h1>
  50. <p>Use the send feedback function in Visual Studio or contact us directly at <a href="mailto:vcpplinux-support@microsoft.com?subject=Linux%20Console%20App%20question">VC++ Linux Support</a></p>
  51. </div>
  52. </td>
  53. </div>
  54. </tr>
  55. </table>
  56. </div>
  57. </body>
  58. </html>