Browse Source

pfadfehler in der linux build konfiguration behoben

Kolja Strohm 4 years ago
parent
commit
ed667e488b

BIN
sql Linux/readme/images/ArchOptions.gif


BIN
sql Linux/readme/images/ChangeRemote.gif


BIN
sql Linux/readme/images/ManageConnections.gif


BIN
sql Linux/readme/images/OutputTypes.gif


BIN
sql Linux/readme/images/debuggerexport.png


BIN
sql Linux/readme/images/firstconnection.png


BIN
sql Linux/readme/images/linker.png


BIN
sql Linux/readme/images/postbuild.png


+ 0 - 85
sql Linux/readme/readme.html

@@ -1,85 +0,0 @@
-<!DOCTYPE html>
-<html>
-  <head>
-    <meta charset='utf-8'>
-
-    <link rel="stylesheet" type="text/css" href="stylesheet.css" media="screen">
-
-    <title>Getting Started</title>
-  </head>
-
-<body>
-
-    <div class="container">
-        <div id="header">
-            <h1>Getting Started</h1>
-            <h2>Visual C++ for Linux Development extension</h2>
-        </div>
-    
-    <table>
-    <tr>    
-    <div id="main_content">
-        
-        <td>
-        <div id="lpanel">
-            <h1>Setting up your project for Linux Development</h1>
-
-            <p>With this extension 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 remote build your sources and can launch your application with the debugger. Our project system supports targeting specific architectures, including ARM.</p>
-            <img src="images\ArchOptions.gif"/>
-            
-            <h1>Connecting to Linux</h1>
-            <h2>Prerequisites</h2>
-            <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>
-            
-            <h2>First connection</h2>
-            <p>The first time you target a Linux machine you will be prompted for connection information.  This is triggered by building the project.</p>
-            <img src="images\firstconnection.png"/>
-                
-            <h2>Adding and removing connections</h2>
-            <p>To add a new connection, go to Tools > Options and search for Linux. From here you can add and remove connections.</p>
-            <img src="images\ManageConnections.gif"/>
-            
-            <p>To change which connection a project is using go to the project properties remote settings and update the target machine.</p>
-            <img src="images\ChangeRemote.gif"/>
-            
-            <h1>Project Properties</h1>
-            <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 remote 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>
-            <img src="images\OutputTypes.gif"/>
-            
-            <p>Looking at the General settings for the project, you can see how our output and intermediate directories were configured. Additionally, you’ll 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>
-            
-            <p>Add additional library dependencies on the Linker > Input property page.</p>
-            <img src="images\linker.png"/>
-            
-            <p>You can pass additional pre launch commands to the debugger to do things like launch graphical apps on the remote linux machine.</p>
-            <img src="images\debuggerexport.png"/>
-            
-            <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>
-            <img src="images\postbuild.png"/>
-            
-        </div>
-        </td>
-        <td>
-        <div id="rpanel">
-
-            <h1>Resources</h1>
-
-            <p>Check out the <a href="http://aka.ms/vslinuxext">VS Gallery VC++ for Linux Development page</a> where we will keep updates posted. You can also check out our <a href="https://blogs.msdn.microsoft.com/vcblog/2016/03/30/visual-c-for-linux-development">announcment blog post</a> for more in depth details on configuring the project properties.</p>
-            
-            <p>Here are other utilities you will find useful in connection with this extension.</p>
-            <ul>
-                <li>Learn more about <a href="http://aka.ms/vsiot">IoT Development</a></li>
-                <li><a href="http://aka.ms/vsiotext">VC++ for IoT Development Tools</a></li>
-                <li><a href="https://github.com/Azure/azure-iot-sdks">Azure IoT SDK</a>, includes a C API for connecting small devices to the Azure IoT Hub</li>
-            </ul>
-
-            <h1>Give us feedback</h1>
-            <p><a href="http://aka.ms/vslinux-feedback">UserVoice</a></p>
-        </div>
-        </td>   
-    </div>
-    </tr>
-    </table>
-    </div>
-</body>
-</html>

+ 0 - 119
sql Linux/readme/stylesheet.css

@@ -1,119 +0,0 @@
-body {
-  margin: 0;
-  padding: 0;
-  border: 0;
-  color: #1E1E1E;
-  font-size: 13px;
-  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
-  line-height: 1.45;
-  word-wrap: break-word;
-}
-
-/* General & 'Reset' Stuff */
-
-
-.container {
-  width: 1100px;
-  margin: 0 auto;
-}
-
-section {
-  display: block;
-  margin: 0;
-}
-
-h1, h2, h3, h4, h5, h6 {
-  margin: 0;
-}
-
-table, tr {
-    width: 1100px;
-    padding: 0px;
-    vertical-align: top;
-  }
-
-/* Header, <header>
-   header   - container
-   h1       - project name
-   h2       - project description
-*/
-
-#header {
-  color: #FFF;
-  background: #68217a;
-  position:relative;
-}
-h1, h2 {
-  font-family: "Segoe UI Light", "Segoe UI", Helvetica, Arial, sans-serif;
-  line-height: 1;
-  margin: 0 18px;;
-  padding: 0;
-}
-#header h1 {
-  font-size: 3.4em;
-  padding-top: 18px;
-  font-weight: normal;
-  margin-left: 15px;
-}
-
-#header h2 {
-  font-size: 1.5em;
-  margin-top: 10px;
-  padding-bottom: 18px;
-  font-weight: normal;
-}
-
-#main_content {
-  width: 100%;
-  display: flex;
-  flex-direction: row;
-}
-
-
-h1, h2, h3, h4, h5, h6 {
-  font-weight: bolder;
-}
-
-#main_content h1 {
-  font-size: 1.8em;
-  margin-top: 34px;
-}
-
-    #main_content h1:first-child {
-        margin-top: 30px;
-    }
-
-#main_content h2 {
-  font-size: 1.8em;
-}
-p, ul {
-    margin: 11px 18px;
-}
-
-#main_content a {
-    color: #06C;
-    text-decoration: none;
-}
-ul {
-        margin-top: 13px;
-    margin-left: 18px;
-    padding-left: 0;
-}
-    ul li {
-        margin-left: 18px;
-        padding-left: 0;
-    }
-#lpanel {
-    width: 870px;
-    float: left;
-}
-#rpanel ul {
-    list-style-type: none;
-}
-    #rpanel ul li {
-        line-height: 1.8em;
-    }
-#rpanel {
-    background: #e7e7e7;
-    width: 230px;
-}

+ 2 - 0
sql Linux/sql Linux.vcxproj

@@ -43,6 +43,7 @@
     <IncludePath>..\..\Framework;../../Framework/debug;/usr/include/postgresql/;$(IncludePath);$(ISenseIncludePath);..\..\Postgres\x64\include</IncludePath>
     <OutDir>$(RemoteRootDir)/sql/debug/</OutDir>
     <IntDir>$(RemoteRootDir)/sql/debug/</IntDir>
+    <RemoteTargetPath>$(RemoteProjectDir)/$(TargetName)$(TargetExt)</RemoteTargetPath>
   </PropertyGroup>
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
     <IncludePath>..\..\Framework;../../Framework/release;$(IncludePath);$(ISenseIncludePath);/usr/include/postgresql/;..\..\Postgres\x64\include</IncludePath>
@@ -51,6 +52,7 @@
     <RemoteProjectDir>$(RemoteRootDir)/sql/release</RemoteProjectDir>
     <OutDir>$(RemoteRootDir)/sql/release/</OutDir>
     <IntDir>$(RemoteRootDir)/sql/release/</IntDir>
+    <RemoteTargetPath>$(RemoteProjectDir)/$(TargetName)$(TargetExt)</RemoteTargetPath>
   </PropertyGroup>
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
     <Link>

+ 5 - 4
sql/sql.vcxproj

@@ -22,33 +22,34 @@
     <ProjectGuid>{656EB484-64B7-4393-AC6B-6471E7B0559A}</ProjectGuid>
     <Keyword>Win32Proj</Keyword>
     <RootNamespace>sql</RootNamespace>
+    <WindowsTargetPlatformVersion>10.0.16299.0</WindowsTargetPlatformVersion>
   </PropertyGroup>
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
     <ConfigurationType>DynamicLibrary</ConfigurationType>
     <UseDebugLibraries>true</UseDebugLibraries>
     <CharacterSet>Unicode</CharacterSet>
-    <PlatformToolset>v141</PlatformToolset>
+    <PlatformToolset>v142</PlatformToolset>
   </PropertyGroup>
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
     <ConfigurationType>DynamicLibrary</ConfigurationType>
     <UseDebugLibraries>true</UseDebugLibraries>
     <CharacterSet>MultiByte</CharacterSet>
-    <PlatformToolset>v141</PlatformToolset>
+    <PlatformToolset>v142</PlatformToolset>
   </PropertyGroup>
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
     <ConfigurationType>DynamicLibrary</ConfigurationType>
     <UseDebugLibraries>false</UseDebugLibraries>
     <WholeProgramOptimization>true</WholeProgramOptimization>
     <CharacterSet>MultiByte</CharacterSet>
-    <PlatformToolset>v141</PlatformToolset>
+    <PlatformToolset>v142</PlatformToolset>
   </PropertyGroup>
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
     <ConfigurationType>DynamicLibrary</ConfigurationType>
     <UseDebugLibraries>false</UseDebugLibraries>
     <WholeProgramOptimization>true</WholeProgramOptimization>
     <CharacterSet>MultiByte</CharacterSet>
-    <PlatformToolset>v141</PlatformToolset>
+    <PlatformToolset>v142</PlatformToolset>
   </PropertyGroup>
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
   <ImportGroup Label="ExtensionSettings">