This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug libstdc++/17755] Can't compile djgpp cross-compiler
- From: "bugzilla at mailinator dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 8 Dec 2004 05:06:02 -0000
- Subject: [Bug libstdc++/17755] Can't compile djgpp cross-compiler
- References: <20040930185659.17755.psychonaut@nothingisreal.com>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From bugzilla at mailinator dot com 2004-12-08 05:06 -------
I got the same problems for gcc-3.4.3. I fixed the iovec error by inserting
struct iovec {
void *iov_base;
size_t iov_len;
};
ssize_t writev (int filedes, const struct iovec *vector, int count);
at line 133 in gcc-3.4.3-obj/i586-pc-msdosdjgpp/libstdc++-v3/src. However, this
gives another error during make install. libstdc++ doesn't install properly.
Luckily, I'm not using libstdc++ in my programs, and the cross compiler itself
works fine.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17755