Path: csiph.com!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail From: Ian Collins Newsgroups: comp.lang.c++ Subject: Re: Examples of current platforms/architectures where sizeof(void*) > sizeof(int*) ? Date: Sat, 4 Sep 2021 10:14:29 +1200 Lines: 19 Message-ID: References: <3a825e94-940c-49c5-990a-554a6bcc35a4n@googlegroups.com> <_XsXI.31292$o45.12466@fx46.iad> <87a6kuhchx.fsf@nosuchdomain.example.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: individual.net PHl2SCKh68VNLlAcPLKw4gCjYoJIdq9b89Er/DQO7p4X+lD3b/ Cancel-Lock: sha1:48TFXnIgzMZhTR74lquobSWtBTE= User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.11.0 In-Reply-To: Content-Language: en-US Xref: csiph.com comp.lang.c++:81040 On 04/09/2021 07:45, Bart wrote: > > Nobody is really interested in mucking about with source codes is > complex directory structures. There are some 50,000 binaries on my OLD > Windows PC (it'd be a lot more now); how long would it take to build it > all from source code? Auto tools is on the way out for modern projects. In our code base, we build a number of third party projects from source. We do this because we build for several platforms including Windows and embedded Linux. Most of these projects (22/27) use CMake, which is becoming (if it hasn't already become) the de facto standard for cross platform open source projects. So for most of what we build, building for Windows is no different to building for Linux. The fly in the ointment is openssl which a bitch to build on windows... -- Ian.