This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug libstdc++/17755] Can't compile djgpp cross-compiler


------- 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]