X-Recipient: archive-cygwin AT delorie DOT com DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5231A3858C74 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cygwin.com; s=default; t=1673792518; bh=awQiZy4kkHjScv7tDjp3EOzE3kUm01c7NkZ5BwDtTTg=; h=Date:Subject:To:References:In-Reply-To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=lgV7PnP29Sbx2Zjq2o2knwN9Ac+hv8lfSdWupZvLB0pSeO7HqXko1gvHKkOYudELO bdtsW7cg/OYZhXCDi6b/ZboMTZxPT8qcgOJILBggcuQZkIfpzI0jLqiMX030/CA11k qIT36DkfnW8A7yuafPjttn3bC+Wc8gd7VPJ20kdA= X-Original-To: cygwin AT cygwin DOT com Delivered-To: cygwin AT cygwin DOT com DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org B131F3858D32 Message-ID: <573d1c7c-5b09-766e-3203-7fac7104376c@towo.net> Date: Sun, 15 Jan 2023 15:21:39 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.6.1 Subject: Re: GCC doesn't find relative includes when passed paths using backward-slashes To: cygwin AT cygwin DOT com References: In-Reply-To: X-Provags-ID: V03:K1:luWfQ45AF08Lf5vv4ACB0BNaC9sjiAS++tDnKvj7fbuTq1wBIIg GZpYfr26slVvoq2YLOTDTarKqSlIHdAIdO2fGxL1RZDDn3D/b0dE59E7Sjx0RFZbMlkiRzo XPqz9zVgP8UXC3urRW5qP+tqo6GyiLCsW3MO/1B5ITtOZbmzpDi+WcF1ljC5PRDGYbf14JL 7vkZBYnxhyVQVwzojSf3Q== UI-OutboundReport: notjunk:1;M01:P0:ZnjZ1FVA+ug=;f6HtLavHHQDy0eVTkLtC/YqTl6D ge1YBmNIQJT6HZX8JtLjx/D4LWJV+rDENLMWwJthj2E7WVC1WWuK4nOVx1u09AzyhT6DcNvVR 4IM8uiWhO7ZQEJHXPpjW3la5du2ZwS/j0jdlaAOEogRxSgSx/MaGbxbH1JA5gcEgFyo/qupKP xIDqyN1uVPBuhHTnSZtsKlSbWwvat8ZSo61qkVlpxGuyTnRd3KvDP5/NPg002Vh4rBrvTgwF/ atf1b3+ye1M47FiB3RsgiPC+ctyB8GpGlH7+AFH19uztzatf5nKac6qMetWhXu7LAIGXkxNvt 3wHq49/aWbrSus8Wn3jDwQ9Yaq+QiXcODyZwbhAK8XNsjVSQlkt8m4YM+UHXaJkiZ9i9se934 KFOR2eNwtKMDdxtKx44g9bmNZZn4XTdwBuyrgfNFtwla7NWAqV40fca7HPo2jN0k2sKMx8n8u rP/c+4ZAGyZY5fK935JtZ8U2IpXUNra4gL3hCZN2OUqerhk1Q0XWr011YKnjHT2IPXVbJ5nMj pMWm9OHdjuKm7D5iJ2+eNZ6xxhtB2VohUKvnYoQHQQIKpOyVMlbRpbxCW6QbigtNx6ppsM1g1 77eUgdPaNAR5DeiRdBv+12ydJhyP6lATZloz0hGw+F9qKCL3fivLrSMEHH1oQUCrV4QwBkLLM nR06NUADhEH6aQhW6L1JTcdnXyjiIuU3IqLu/jqJMw== X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00, KAM_DMARC_STATUS, KAM_LAZY_DOMAIN_SECURITY, NICE_REPLY_A, RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H2, SPF_HELO_NONE, SPF_NONE, TXREP autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: cygwin AT cygwin DOT com X-Mailman-Version: 2.1.29 List-Id: General Cygwin discussions and problem reports List-Archive: List-Post: List-Help: List-Subscribe: , From: Thomas Wolff via Cygwin Reply-To: Thomas Wolff Content-Type: text/plain; charset="utf-8"; Format="flowed" Sender: "Cygwin" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from base64 to 8bit by delorie.com id 30FEMKL7001274 Am 15.01.2023 um 14:51 schrieb Hans-Bernhard Bröker via Cygwin: > Am 15.01.2023 um 13:38 schrieb Alexander Grund via Cygwin: > >> The build system, finding it is running on Windows, will pass paths >> with backward slashes to the compiler. > > And that's wrong.  Cygwin is not, for practical intents and purposes, > Windows.  It just runs on top of it. > > Yes, backslashed path names do work in some cases on Cygwin (note that > in the case at hand, you did have to "" around the name for that to > work).  But at some point that idea has to be given up to achieve the > primary goal of emulating a Unix-like environment. > > The correct solution thus becomes "Don't do that, then."  Fix the > build system detection to recognize Cygwin as a type of Unix, and > things will almost certainly just work. > > It also depends on how your application, in this case gcc or rather cpp, handles path names. If it uses library functions dirname and basename, it should work as you expect, but maybe it looks for '/' itself, so you cannot expect all applications to be patched for cygwin/Windows pathname support. -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documentation: https://cygwin.com/docs.html Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple