X-Authentication-Warning: delorie.com: mail set sender to djgpp-bounces using -f X-Recipient: djgpp AT delorie DOT com From: "Andris Pavenis (andris DOT pavenis AT iki DOT fi) [via djgpp AT delorie DOT com]" Subject: gcc-7 and std::experimental::filesystem To: "DJGPP List (E-mail)" Message-ID: <2ec3037c-668f-c5b8-b4cb-55945d0038b2@iki.fi> Date: Sun, 28 May 2017 18:13:49 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.1.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US Reply-To: djgpp AT delorie DOT com Noticed that std::experimental::filesystem support is not compiled in for DJGPP. Default value in configuration parameter --enable-libstdcxx-filesystem-ts is auto which only enables support for predefined targets. DJGPP is not between them. Attempted to enable it (for building cross-compiler): 1) S_ISSOCK used in one place (can easily be ifdefed out) 2) 2 error constants std::errc::not_supported and std::errc::operation_not_supported used which are not defined for DJGPP. Corersponding errno macros are ENOTSUP and EOPNOSUPP. Second macro is present in wat3222br6.zip, but none of them in djdev205.zip. Presence of the first is checked by configure script (_GLIBCXX_HAVE_ENOTSUP). Adding these 2 macros would allow filesystem library (libstdc++fs.a) to be built, but we would need to think how to rename it to avoid SFN conflict with libstdc++.a (after replacing ++ with xx). I have however not tested if it is so. Also that would require making release of DJGPP v2.06 with some changes. Andris