<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[compile parameter in vs2003]]></title><description><![CDATA[<p>hi zusammen</p>
<p>ich compiliere mein projekt über die commandline so:<br />
cl -Ic:\j2sdk1.4.2_10\include -Ic:\j2sdk1.4.2_10\include\win32 -MD -LD Sample1.cpp -FeSample1.dll</p>
<p>wie kann ich das im vs2003 einbauen, damit ich das von da aus mit meinen parametern compilieren kann?</p>
<p>gruss<br />
green</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/147212/compile-parameter-in-vs2003</link><generator>RSS for Node</generator><lastBuildDate>Sat, 18 Jul 2026 03:54:09 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/147212.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 15 May 2006 10:13:09 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to compile parameter in vs2003 on Mon, 15 May 2006 10:13:09 GMT]]></title><description><![CDATA[<p>hi zusammen</p>
<p>ich compiliere mein projekt über die commandline so:<br />
cl -Ic:\j2sdk1.4.2_10\include -Ic:\j2sdk1.4.2_10\include\win32 -MD -LD Sample1.cpp -FeSample1.dll</p>
<p>wie kann ich das im vs2003 einbauen, damit ich das von da aus mit meinen parametern compilieren kann?</p>
<p>gruss<br />
green</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1057991</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1057991</guid><dc:creator><![CDATA[Green]]></dc:creator><pubDate>Mon, 15 May 2006 10:13:09 GMT</pubDate></item><item><title><![CDATA[Reply to compile parameter in vs2003 on Mon, 15 May 2006 12:13:39 GMT]]></title><description><![CDATA[<p>Die Inkludepfade setzt du in den Projekteinstellungen/Compiler.</p>
<p>-MD ist glaub ich voreingestellt (Multithreading Bibliothek Non-Debug)</p>
<p>Sample1.cpp fügst du mit Projekt/Neues Element mit in die Projektmappe hinzu.</p>
<p>Die Sample1.dll wird in den Projekteinstellungen/Linker mit angegeben.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1058073</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1058073</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Mon, 15 May 2006 12:13:39 GMT</pubDate></item><item><title><![CDATA[Reply to compile parameter in vs2003 on Mon, 15 May 2006 20:31:47 GMT]]></title><description><![CDATA[<p>Dieser Thread wurde von Moderator/in <a href="http://www.c-plusplus.net/forum/profile.php?mode=viewprofile&amp;u=403" rel="nofollow">HumeSikkins</a> aus dem Forum <a href="http://www.c-plusplus.net/forum/viewforum.php?f=15" rel="nofollow">C++</a> in das Forum <a href="http://www.c-plusplus.net/forum/viewforum.php?f=1" rel="nofollow">MFC (Visual C++)</a> verschoben.</p>
<p>Im Zweifelsfall bitte auch folgende Hinweise beachten:<br />
<a href="http://www.c-plusplus.net/forum/viewtopic.php?t=39405" rel="nofollow">C/C++ Forum :: FAQ - Sonstiges :: Wohin mit meiner Frage?</a></p>
<p><em>Dieses Posting wurde automatisch erzeugt.</em></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1058483</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1058483</guid><dc:creator><![CDATA[C++ Forumbot]]></dc:creator><pubDate>Mon, 15 May 2006 20:31:47 GMT</pubDate></item><item><title><![CDATA[Reply to compile parameter in vs2003 on Tue, 16 May 2006 06:06:46 GMT]]></title><description><![CDATA[<p>green schrieb:</p>
<blockquote>
<p>hi zusammen</p>
<p>ich compiliere mein projekt über die commandline so:<br />
cl -Ic:\j2sdk1.4.2_10\include -Ic:\j2sdk1.4.2_10\include\win32 -MD -LD Sample1.cpp -FeSample1.dll</p>
<p>wie kann ich das im vs2003 einbauen, damit ich das von da aus mit meinen parametern compilieren kann?</p>
</blockquote>
<p>Erzeuge ein Projekt mit den entsprechenden Einstellungen.<br />
Am besten fängst Du mit einem leeren Win32 DLL Projekt an. Fügst Deine Dateien hinzu. Den -I Parameter kannst Du IMHO vergessen, wenn die include Dateien im entsprechenden Verzeichnis bzw. Unterverzeichnis der Source liegen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1058569</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1058569</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Tue, 16 May 2006 06:06:46 GMT</pubDate></item><item><title><![CDATA[Reply to compile parameter in vs2003 on Fri, 19 May 2006 06:16:36 GMT]]></title><description><![CDATA[<p>danke für die antworten.</p>
<p>ich bin ein anfänger in c++. ich versuche hier von java auf c++ zuzugreifen und muss daher eine klasse und ein headerfile in ein bestehendes c++ projekt einbinden. das jni.h file findet er jetzt, nur hab ich jetzt zwei link-fehler:<br />
testapp error LNK2019: unresolved external symbol _strupr referenced in function _Java_Sample1_stringMethod@12<br />
testapp fatal error LNK1120: 1 unresolved externals</p>
<p>was bedeutet das?<br />
was bedeuten die beiden parameter: -MD und -LD?</p>
<p>mit der folgenden commandline gehts:<br />
cl -Ic:\j2sdk1.4.2_10\include -Ic:\j2sdk1.4.2_10\include\win32 -MD -LD Sample1.cpp -FeSample1.dll</p>
<p>Microsoft Windows XP [Version 5.1.2600]<br />
(C) Copyright 1985-2001 Microsoft Corp.</p>
<p>cl -Ic:\j2sdk1.4.2_10\include -Ic:\j2sdk1.4.2_10\include\win32 -MD -LD Sample1.cpp -FeSample1.dll<br />
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 13.10.3077 for 80x86<br />
Copyright (C) Microsoft Corporation 1984-2002. All rights reserved.</p>
<p>Sample1.cpp<br />
Microsoft (R) Incremental Linker Version 7.10.3077<br />
Copyright (C) Microsoft Corporation. All rights reserved.</p>
<p>/dll<br />
/implib:Sample1.lib<br />
/out:Sample1.dll<br />
Sample1.obj<br />
Creating library Sample1.lib and object Sample1.exp</p>
<p>green</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1060581</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1060581</guid><dc:creator><![CDATA[Green]]></dc:creator><pubDate>Fri, 19 May 2006 06:16:36 GMT</pubDate></item></channel></rss>