<?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[boost::ptr_map und MinGW: A declaration of &#x27;assert&#x27; must be available]]></title><description><![CDATA[<p>Servus,</p>
<p>habe folgendes Problem mit boost::ptr_map.<br />
Unter Linux mit gcc 4.3.2 kompilierte es zunächst nicht, die Fehlermeldung war:</p>
<pre><code>&quot;error: there are no arguments to 'assert' that depend on a template parameter, so a declaration of 'assert' must be available&quot;.
</code></pre>
<p>Daraufhin habe ich vor dem include zu ptr_map ein</p>
<pre><code class="language-cpp">#include &lt;cassert&gt;
</code></pre>
<p>gemacht und die Sache lief.</p>
<p>Jetzt die Gegenprobe unter windows mit MinGw und gcc 3.4.2:<br />
Gleiche Fehlermeldung wie oben, aber weder mit</p>
<pre><code class="language-cpp">#include &lt;cassert&gt;
</code></pre>
<p>noch mit</p>
<pre><code class="language-cpp">#include &lt;assert.h&gt;
</code></pre>
<p>kompiliert es.</p>
<p>Was fehlt da?</p>
<p>Gruß,<br />
Phil</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/243405/boost-ptr_map-und-mingw-a-declaration-of-assert-must-be-available</link><generator>RSS for Node</generator><lastBuildDate>Sat, 19 Sep 2026 21:11:48 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/243405.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 16 Jun 2009 12:00:27 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to boost::ptr_map und MinGW: A declaration of &#x27;assert&#x27; must be available on Tue, 16 Jun 2009 12:00:27 GMT]]></title><description><![CDATA[<p>Servus,</p>
<p>habe folgendes Problem mit boost::ptr_map.<br />
Unter Linux mit gcc 4.3.2 kompilierte es zunächst nicht, die Fehlermeldung war:</p>
<pre><code>&quot;error: there are no arguments to 'assert' that depend on a template parameter, so a declaration of 'assert' must be available&quot;.
</code></pre>
<p>Daraufhin habe ich vor dem include zu ptr_map ein</p>
<pre><code class="language-cpp">#include &lt;cassert&gt;
</code></pre>
<p>gemacht und die Sache lief.</p>
<p>Jetzt die Gegenprobe unter windows mit MinGw und gcc 3.4.2:<br />
Gleiche Fehlermeldung wie oben, aber weder mit</p>
<pre><code class="language-cpp">#include &lt;cassert&gt;
</code></pre>
<p>noch mit</p>
<pre><code class="language-cpp">#include &lt;assert.h&gt;
</code></pre>
<p>kompiliert es.</p>
<p>Was fehlt da?</p>
<p>Gruß,<br />
Phil</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1727545</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1727545</guid><dc:creator><![CDATA[PhilippM]]></dc:creator><pubDate>Tue, 16 Jun 2009 12:00:27 GMT</pubDate></item><item><title><![CDATA[Reply to boost::ptr_map und MinGW: A declaration of &#x27;assert&#x27; must be available on Tue, 16 Jun 2009 12:38:49 GMT]]></title><description><![CDATA[<p>Nix, was soll fehlen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /></p>
<p>Hat ein Boost-Entwickler wohl vergessen &lt;cassert&gt; zu inkludieren, ne? Kann ja mal passieren.<br />
Mach nen Bug Report, dann is das in der nächsten Version gefixt.</p>
<p>ER: Sorry!, hab erst jetzt den zweiten Teil ... aufgenommen (drübergelesen hab ich vorher schon).<br />
Keine Ahnung was da fehlt. Klingt sonderbar würde ich sagen.</p>
<p>Probier mal das:</p>
<pre><code class="language-cpp">#include &lt;cassert&gt;
#ifndef assert
    #define assert assert
#endif
#include &lt;die_boost_header_um_die_es_geht.hpp&gt;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1727575</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1727575</guid><dc:creator><![CDATA[hustbaer]]></dc:creator><pubDate>Tue, 16 Jun 2009 12:38:49 GMT</pubDate></item><item><title><![CDATA[Reply to boost::ptr_map und MinGW: A declaration of &#x27;assert&#x27; must be available on Tue, 16 Jun 2009 12:47:31 GMT]]></title><description><![CDATA[<p>Welche Boost Version?</p>
<p>Grüssli</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1727592</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1727592</guid><dc:creator><![CDATA[Dravere]]></dc:creator><pubDate>Tue, 16 Jun 2009 12:47:31 GMT</pubDate></item><item><title><![CDATA[Reply to boost::ptr_map und MinGW: A declaration of &#x27;assert&#x27; must be available on Tue, 16 Jun 2009 13:37:56 GMT]]></title><description><![CDATA[<p>Dravere schrieb:</p>
<blockquote>
<p>Welche Boost Version?</p>
<p>Grüssli</p>
</blockquote>
<p>1.3.9</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1727638</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1727638</guid><dc:creator><![CDATA[PhilippM]]></dc:creator><pubDate>Tue, 16 Jun 2009 13:37:56 GMT</pubDate></item><item><title><![CDATA[Reply to boost::ptr_map und MinGW: A declaration of &#x27;assert&#x27; must be available on Tue, 16 Jun 2009 13:52:08 GMT]]></title><description><![CDATA[<p>PhilippM schrieb:</p>
<blockquote>
<p>1.3.9</p>
</blockquote>
<p>Ich denke mal, dass du 1.39 meinst, denn vor 1.10.3 gab es noch gar keine Versionsnummern <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /><br />
Dann ist meine Vermutung aber sowieso falsch und weiterhelfen kann ich dir auch nicht, da ich immer noch 1.37 verwende und auf Windows einen solchen Fehler nicht erzeugen kann.</p>
<p>Grüssli</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1727650</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1727650</guid><dc:creator><![CDATA[Dravere]]></dc:creator><pubDate>Tue, 16 Jun 2009 13:52:08 GMT</pubDate></item><item><title><![CDATA[Reply to boost::ptr_map und MinGW: A declaration of &#x27;assert&#x27; must be available on Wed, 17 Jun 2009 14:02:17 GMT]]></title><description><![CDATA[<p>hustbaer schrieb:</p>
<blockquote>
<p>Probier mal das:</p>
<pre><code class="language-cpp">#include &lt;cassert&gt;
#ifndef assert
    #define assert assert
#endif
#include &lt;die_boost_header_um_die_es_geht.hpp&gt;
</code></pre>
</blockquote>
<p>Hat leider nicht funktioniert.<br />
Gleicher Fehler wie vorher.<br />
Und ich meine natürlich Version 1.39.0, sorry.</p>
<p>EDIT: Nochmal 1.37 installiert, gleiche Fehlermeldung.</p>
<p>Unter Linux mit gcc 4.3.2 geht's wie gesagt problemlos.<br />
Mein MinGW hab ich mittlerweile upgedatet auf gcc 3.4.5 was neueres haben die für windows nicht.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1728229</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1728229</guid><dc:creator><![CDATA[PhilippM]]></dc:creator><pubDate>Wed, 17 Jun 2009 14:02:17 GMT</pubDate></item><item><title><![CDATA[Reply to boost::ptr_map und MinGW: A declaration of &#x27;assert&#x27; must be available on Fri, 19 Jun 2009 15:38:39 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>es ist zum verzweifeln!<br />
Ich habe schon an die boost mailingliste geschrieben aber noch keine brauchbaren Antworten erhalten.</p>
<p>Die Vermutungen gehen dahin, dass mein include-path irgendwie falsch ist und er beim includen der assert.h durcheinanderkommt, wenn er irgendwie tief die pfade hinabgesteigen ist, keine Ahnung <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":("
      alt="😞"
    /></p>
<p>Das ist meine Ausgabe, wenn ich gcc -v nach dem Include-path frage:</p>
<pre><code>C:/MinGW/bin/../libexec/gcc/mingw32/3.4.5/cc1.exe -E -quiet -v -iprefix
C:\MinGW\bin\../lib/gcc/mingw32/3.4.5/ -
ignoring nonexistent directory &quot;C:/MinGW/bin/../lib/gcc/mingw32/3.4.5/../../../../mingw32/include&quot;
ignoring nonexistent directory &quot;/mingw/lib/gcc/mingw32/3.4.5/../../../../mingw32/include&quot;
#include &quot;...&quot; search starts here:
#include &lt;...&gt; search starts here:
 C:/MinGW/bin/../lib/gcc/mingw32/3.4.5/../../../../include
 C:/MinGW/bin/../lib/gcc/mingw32/3.4.5/include
 /mingw/lib/gcc/mingw32/3.4.5/../../../../include
 /mingw/include
 /mingw/lib/gcc/mingw32/3.4.5/include
 /mingw/include
End of search list.
</code></pre>
<p>Irgendwelche Vorschläge?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1729589</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1729589</guid><dc:creator><![CDATA[PhilippM]]></dc:creator><pubDate>Fri, 19 Jun 2009 15:38:39 GMT</pubDate></item><item><title><![CDATA[Reply to boost::ptr_map und MinGW: A declaration of &#x27;assert&#x27; must be available on Fri, 19 Jun 2009 15:47:14 GMT]]></title><description><![CDATA[<p>Noch eine Rückfrage, gibt es auch den Fehler bei folgendem Quellcode?</p>
<pre><code class="language-cpp">#include &lt;boost/ptr_container/ptr_map.hpp&gt;

int main()
{
}
</code></pre>
<p>Denn, wie gesagt, der funktioniert bei mir, wenn ich den kompiliere:</p>
<pre><code>g++ -o test.exe -I&quot;C:\dev\libs\boost\1_37_0&quot; test.cpp
</code></pre>
<p>Ich verwende allerdings einen anderen Kompiler:</p>
<pre><code>g++ (4.3.3-tdm-1 mingw32) 4.3.3
Copyright (C) 2008 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
</code></pre>
<p>Ich finde allerdings schon nur dein Fehler auf Linux seltsam. Kann ich nämlich auch nicht reproduzieren.<br />
Hast du es schon mit diesem kurzen Quellcode versucht?</p>
<p>Grüssli</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1729601</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1729601</guid><dc:creator><![CDATA[Dravere]]></dc:creator><pubDate>Fri, 19 Jun 2009 15:47:14 GMT</pubDate></item><item><title><![CDATA[Reply to boost::ptr_map und MinGW: A declaration of &#x27;assert&#x27; must be available on Fri, 19 Jun 2009 15:56:39 GMT]]></title><description><![CDATA[<p>Nun, ich programmiere eine dll, daher macht eine main funktion nicht so viel sinn.</p>
<p>Also hab eich jetzt nur mal folgende Datei kompiliert:</p>
<pre><code class="language-cpp">#include &lt;boost/ptr_container/ptr_map.hpp&gt;

int test_this()
{
    return 0;
}
</code></pre>
<p>Ergebnis:</p>
<pre><code>In file included from c:/boost_1_39_0/boost/scoped_array.hpp:14,
                 from c:/boost_1_39_0/boost/ptr_container/detail/scoped_deleter.
hpp:21,
                 from c:/boost_1_39_0/boost/ptr_container/detail/reversible_ptr_
container.hpp:21,
                 from c:/boost_1_39_0/boost/ptr_container/detail/associative_ptr
_container.hpp:20,
                 from c:/boost_1_39_0/boost/ptr_container/ptr_map_adapter.hpp:20
,
                 from c:/boost_1_39_0/boost/ptr_container/ptr_map.hpp:20,
                 from test_map.cpp:1:
c:/boost_1_39_0/boost/smart_ptr/scoped_array.hpp: In member function `T&amp; boost::
scoped_array&lt;T&gt;::operator[](ptrdiff_t) const':
c:/boost_1_39_0/boost/smart_ptr/scoped_array.hpp:80: error: there are no argumen
ts to `assert' that depend on a template parameter, so a declaration of `assert'
 must be available
c:/boost_1_39_0/boost/smart_ptr/scoped_array.hpp:80: error: (if you use `-fpermi
ssive', G++ will accept your code, but allowing the use of an undeclared name is
 deprecated)
In file included from c:/boost_1_39_0/boost/ptr_container/detail/reversible_ptr_
container.hpp:21,
                 from c:/boost_1_39_0/boost/ptr_container/detail/associative_ptr
_container.hpp:20,
                 from c:/boost_1_39_0/boost/ptr_container/ptr_map_adapter.hpp:20
,
                 from c:/boost_1_39_0/boost/ptr_container/ptr_map.hpp:20,
                 from test_map.cpp:1:
c:/boost_1_39_0/boost/ptr_container/detail/scoped_deleter.hpp: In constructor `b
oost::ptr_container_detail::scoped_deleter&lt;T, CloneAllocator&gt;::scoped_deleter(si
ze_t)':
c:/boost_1_39_0/boost/ptr_container/detail/scoped_deleter.hpp:47: error: there a
re no arguments to `assert' that depend on a template parameter, so a declaratio
n of `assert' must be available
c:/boost_1_39_0/boost/ptr_container/detail/scoped_deleter.hpp: In constructor `b
oost::ptr_container_detail::scoped_deleter&lt;T, CloneAllocator&gt;::scoped_deleter(si
ze_t, const T&amp;)':
c:/boost_1_39_0/boost/ptr_container/detail/scoped_deleter.hpp:58: error: there a
re no arguments to `assert' that depend on a template parameter, so a declaratio
n of `assert' must be available
c:/boost_1_39_0/boost/ptr_container/detail/scoped_deleter.hpp: In constructor `b
oost::ptr_container_detail::scoped_deleter&lt;T, CloneAllocator&gt;::scoped_deleter(In
putIterator, InputIterator)':
c:/boost_1_39_0/boost/ptr_container/detail/scoped_deleter.hpp:71: error: there a
re no arguments to `assert' that depend on a template parameter, so a declaratio
n of `assert' must be available
In file included from c:/boost_1_39_0/boost/ptr_container/detail/reversible_ptr_
container.hpp:24,
                 from c:/boost_1_39_0/boost/ptr_container/detail/associative_ptr
_container.hpp:20,
                 from c:/boost_1_39_0/boost/ptr_container/ptr_map_adapter.hpp:20
,
                 from c:/boost_1_39_0/boost/ptr_container/ptr_map.hpp:20,
                 from test_map.cpp:1:
c:/boost_1_39_0/boost/ptr_container/clone_allocator.hpp: In function `T* boost::
new_clone(const T&amp;)':
c:/boost_1_39_0/boost/ptr_container/clone_allocator.hpp:35: error: there are no
arguments to `assert' that depend on a template parameter, so a declaration of `
assert' must be available
In file included from c:/boost_1_39_0/boost/ptr_container/detail/associative_ptr
_container.hpp:20,
                 from c:/boost_1_39_0/boost/ptr_container/ptr_map_adapter.hpp:20
,
                 from c:/boost_1_39_0/boost/ptr_container/ptr_map.hpp:20,
                 from test_map.cpp:1:
c:/boost_1_39_0/boost/ptr_container/detail/reversible_ptr_container.hpp: In stat
ic member function `static typename Config::value_type* boost::ptr_container_det
ail::reversible_ptr_container&lt;Config, CloneAllocator&gt;::null_clone_allocator&lt;allo
w_null_values&gt;::allocate_clone(const typename Config::value_type*)':
c:/boost_1_39_0/boost/ptr_container/detail/reversible_ptr_container.hpp:111: err
or: there are no arguments to `assert' that depend on a template parameter, so a
 declaration of `assert' must be available
In file included from c:/boost_1_39_0/boost/ptr_container/ptr_map_adapter.hpp:20
,
                 from c:/boost_1_39_0/boost/ptr_container/ptr_map.hpp:20,
                 from test_map.cpp:1:
c:/boost_1_39_0/boost/ptr_container/detail/associative_ptr_container.hpp: In mem
ber function `void boost::ptr_container_detail::associative_ptr_container&lt;Config
, CloneAllocator&gt;::multi_transfer(typename AssociatePtrCont::iterator, Associate
PtrCont&amp;)':
c:/boost_1_39_0/boost/ptr_container/detail/associative_ptr_container.hpp:196: er
ror: there are no arguments to `assert' that depend on a template parameter, so
a declaration of `assert' must be available
c:/boost_1_39_0/boost/ptr_container/detail/associative_ptr_container.hpp: In mem
ber function `typename boost::ptr_container_detail::reversible_ptr_container&lt;Con
fig, CloneAllocator&gt;::size_type boost::ptr_container_detail::associative_ptr_con
tainer&lt;Config, CloneAllocator&gt;::multi_transfer(typename AssociatePtrCont::iterat
or, typename AssociatePtrCont::iterator, AssociatePtrCont&amp;)':
c:/boost_1_39_0/boost/ptr_container/detail/associative_ptr_container.hpp:208: er
ror: there are no arguments to `assert' that depend on a template parameter, so
a declaration of `assert' must be available
c:/boost_1_39_0/boost/ptr_container/detail/associative_ptr_container.hpp: In mem
ber function `bool boost::ptr_container_detail::associative_ptr_container&lt;Config
, CloneAllocator&gt;::single_transfer(typename AssociatePtrCont::iterator, Associat
ePtrCont&amp;)':
c:/boost_1_39_0/boost/ptr_container/detail/associative_ptr_container.hpp:229: er
ror: there are no arguments to `assert' that depend on a template parameter, so
a declaration of `assert' must be available
c:/boost_1_39_0/boost/ptr_container/detail/associative_ptr_container.hpp: In mem
ber function `typename boost::ptr_container_detail::reversible_ptr_container&lt;Con
fig, CloneAllocator&gt;::size_type boost::ptr_container_detail::associative_ptr_con
tainer&lt;Config, CloneAllocator&gt;::single_transfer(typename AssociatePtrCont::itera
tor, typename AssociatePtrCont::iterator, AssociatePtrCont&amp;)':
c:/boost_1_39_0/boost/ptr_container/detail/associative_ptr_container.hpp:245: er
ror: there are no arguments to `assert' that depend on a template parameter, so
a declaration of `assert' must be available
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1729612</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1729612</guid><dc:creator><![CDATA[PhilippM]]></dc:creator><pubDate>Fri, 19 Jun 2009 15:56:39 GMT</pubDate></item><item><title><![CDATA[Reply to boost::ptr_map und MinGW: A declaration of &#x27;assert&#x27; must be available on Fri, 19 Jun 2009 16:09:44 GMT]]></title><description><![CDATA[<p>F*CK F*CK F*CK F*CK F*CK!!!</p>
<p>Ich bin sooooo dämlich!<br />
Den Fehler hatte ich vor zwei Monaten schonmal!!!<br />
Nur da war's auf dem Mac.<br />
<a href="http://www.c-plusplus.net/forum/viewtopic-var-p-is-1668060.html#1668060" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic-var-p-is-1668060.html#1668060</a></p>
<p>Und ich habgenau dasselbe schon wieder vergeigt!!!<br />
ARGHS!<br />
Kopf-&gt;tisch *Deng*!!!</p>
<p>Danke an alle, die hier ihre Zeit vergeudet haben, um mich auf ein bekanntes Problem draufzuheben *rotwerd*</p>
<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/9752">@Dravere</a>: wie kannst du denn unter MinGW den 4.3.3 er gcc benutzen? Das neueste, was ich bei MinGW mitinstallieren kann, ist 3.4.5. Gibts irgendwo eine &quot;geheimen&quot; gcc 4.3.3 für MinGW? wo?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1729618</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1729618</guid><dc:creator><![CDATA[PhilippM]]></dc:creator><pubDate>Fri, 19 Jun 2009 16:09:44 GMT</pubDate></item><item><title><![CDATA[Reply to boost::ptr_map und MinGW: A declaration of &#x27;assert&#x27; must be available on Fri, 19 Jun 2009 16:05:26 GMT]]></title><description><![CDATA[<p>gelöscht</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1729621</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1729621</guid><dc:creator><![CDATA[PhilippM]]></dc:creator><pubDate>Fri, 19 Jun 2009 16:05:26 GMT</pubDate></item><item><title><![CDATA[Reply to boost::ptr_map und MinGW: A declaration of &#x27;assert&#x27; must be available on Fri, 19 Jun 2009 16:33:06 GMT]]></title><description><![CDATA[<p>Also die Nuwen MinGW Dist benutzt gcc 4.3.3:</p>
<p><a href="http://nuwen.net/mingw.html" rel="nofollow">http://nuwen.net/mingw.html</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1729640</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1729640</guid><dc:creator><![CDATA[life]]></dc:creator><pubDate>Fri, 19 Jun 2009 16:33:06 GMT</pubDate></item><item><title><![CDATA[Reply to boost::ptr_map und MinGW: A declaration of &#x27;assert&#x27; must be available on Fri, 19 Jun 2009 16:40:27 GMT]]></title><description><![CDATA[<p>PhilippM schrieb:</p>
<blockquote>
<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/9752">@Dravere</a>: wie kannst du denn unter MinGW den 4.3.3 er gcc benutzen? Das neueste, was ich bei MinGW mitinstallieren kann, ist 3.4.5. Gibts irgendwo eine &quot;geheimen&quot; gcc 4.3.3 für MinGW? wo?</p>
</blockquote>
<p>Ich habe in Windows seit Ewigkeiten nicht mehr aktualisiert, aber</p>
<pre><code>D:\src\research\AtomTable\bin\Debug&gt;gcc -v
Using built-in specs.
Target: mingw32
Configured with: ../gcc-4.3.0/configure --enable-languages=c,ada,c++,fortran,jav
a,objc,obj-c++ --disable-sjlj-exceptions --enable-shared --enable-libgcj --enabl
e-libgomp --with-dwarf2 --disable-win32-registry --enable-libstdcxx-debug --enab
le-concept-checks --enable-version-specific-runtime-libs --build=mingw32 --with-
bugurl=http://www.mingw.org/bugs.shtml --prefix=/mingw --with-gmp=/mingw/src/gcc
/gmp-mpfr-root --with-mpfr=/mingw/src/gcc/gmp-mpfr-root --with-libiconv-prefix=/
mingw/src/gcc/libiconv-root
Thread model: win32
gcc version 4.3.0 20080305 (alpha-testing) mingw-20080502 (GCC)
</code></pre>
<p>Habe halt nicht den Auto-Installer genommen, sondern die Pakete gesaugt, entpackt und C:/MinGW kopiert. Kann sein, daß der Auto-Installer nur als stabil bekannte Versionen kennt.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1729647</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1729647</guid><dc:creator><![CDATA[volkard]]></dc:creator><pubDate>Fri, 19 Jun 2009 16:40:27 GMT</pubDate></item><item><title><![CDATA[Reply to boost::ptr_map und MinGW: A declaration of &#x27;assert&#x27; must be available on Fri, 19 Jun 2009 16:54:14 GMT]]></title><description><![CDATA[<p>Ich würde die Nuwen Distro nicht empfehlen.</p>
<p>Check dir lieber die einzelnen Pakete von der &quot;original&quot; MinGW Seite, so wie volkard geschrieben hat.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1729653</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1729653</guid><dc:creator><![CDATA[hustbaer]]></dc:creator><pubDate>Fri, 19 Jun 2009 16:54:14 GMT</pubDate></item><item><title><![CDATA[Reply to boost::ptr_map und MinGW: A declaration of &#x27;assert&#x27; must be available on Fri, 19 Jun 2009 17:24:57 GMT]]></title><description><![CDATA[<p>Ich benutze diesen GCC:<br />
<a href="http://www.tdragon.net/recentgcc/" rel="nofollow">http://www.tdragon.net/recentgcc/</a></p>
<p>Gibt sogar noch neuere Versionen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
<p>Grüssli</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1729674</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1729674</guid><dc:creator><![CDATA[Dravere]]></dc:creator><pubDate>Fri, 19 Jun 2009 17:24:57 GMT</pubDate></item></channel></rss>