Thanks again. I pointed CMake to the uppermost directory that contains the
CMakeLists.txt file along with LICENSE.md, README.md, and SUPPORT.md. Now
the configuration seems to start correctly:

-- Performing Test DEAL_II_HAVE_FLAG_Werror
-- Performing Test DEAL_II_HAVE_FLAG_Werror - Success
-- Performing Test DEAL_II_HAVE_FLAG_pedantic
-- Performing Test DEAL_II_HAVE_FLAG_pedantic - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wall
...

  But then I get, for example:
...
-- Performing Test DEAL_II_HAVE_AVX512 - Failed
-- Performing Test DEAL_II_HAVE_ALTIVEC - Failed
...

And finally:

-- Looking for C++ include sys/resource.h - not found
-- Looking for C++ include unistd.h - found
-- Looking for gethostname - not found
-- Looking for getpid - found
CMake Error at cmake/checks/check_02_system_features.cmake:85 (message):

  Cygwin and forks such as MinGW and MinGW-64 are unsupported due to
multiple
  unresolved miscompilation issues.

Call Stack (most recent call first):
  cmake/macros/macro_verbose_include.cmake:18 (include)
  CMakeLists.txt:129 (verbose_include)

-- Configuring incomplete, errors occurred!

Any advice on how to solve this issue?

thank you very much
paolo

Il giorno mar 2 set 2025 alle ore 20:33 Daniel Arndt <[email protected]>
ha scritto:

> Paolo,
>
> it doesn't matter where you create the. build directory (as long as
> it's a subdirectory) but you need to point CMake to the uppermost
> directory that has a CMakeLists.txt file (which should be the same as
> the one containing LICENSE.md, README.md, and SUPPORT.md .
>
> Best,
> Daniel
>
> On Tue, Sep 2, 2025 at 2:21 PM Paolo Tesini <[email protected]>
> wrote:
> >
> > Thank you very much. Let me clarify my situation a bit better:
> >
> > When I decompress the archive, it creates the folder dealii-9.7.0.
> > Inside this folder there are several subfolders (including
> \include\deal.II) and various files such as LICENSE.md, README.md, and
> SUPPORT.md.
> >
> > However, those files (LICENSE.md, README.md, SUPPORT.md) are only in the
> top-level dealii-9.7.0 directory, not inside \include\deal.II.
> >
> > My question is:
> > Where exactly should I create the build directory from which to run
> "cmake -G Ninja -DCMAKE_INSTALL_PREFIX=C:\Users\bin\deal.II ../deal.II" and
> how should I adjust ../deal.II, considering that the deal.II directory
> itself does not contain the LICENSE.md, README.md, and SUPPORT.md files?
> >
> > Thanks again for your help
> > paolo
> >
> > Il giorno mar 2 set 2025 alle ore 16:41 Matthias Maier <[email protected]>
> ha scritto:
> >>
> >> You very likely did not configure with the correct base directory. You
> >> will need to make sure that you configure with the source directory
> >> containing LICENSE.md/README.md/SUPPORT.md and not another directory.
> >>
> >> That way the warning goes away and you will have an install target.
> >>
> >> MM
> >>
> >>
> >>
> >> On Tue, Sep  2, 2025, at 09:10 CDT, Paolo Tesini <
> [email protected]> wrote:
> >>
> >> > Thanks for your help so far.
> >> >
> >> > Inside my build folder (which contains now the generated files: base
> >> > (folder), CMakeFiles (folder), build.ninja, cmake_install,
> CMakeCache),
> >> > when I run:
> >> >
> >> > ninja -j4 install
> >> >
> >> > I get the error: ninja: error: unknown target 'install'
> >> >
> >> > Do you know why this happens, and how I should proceed?
> >> >
> >> > Thank you very much
> >> > Best regards,
> >> > paolo
> >> >
> >> > Il giorno mar 2 set 2025 alle ore 10:37 [email protected] <
> >> > [email protected]> ha scritto:
> >> >
> >> >> The warning you are referring to concerns the cmake version
> declaration.
> >> >> In the present case, it would appear that the cmake version you are
> using
> >> >> is a lot more recent than what deal.II requires. Newer cmake version
> tend
> >> >> to require you to have very high version number of
> cmake_minimum_required()
> >> >> for compatibility reason I suppose. In all cases, if your cmake
> >> >> configuration ran, everything should be fine.
> >> >>
> >> >>
> >> >> regarding:
> >> >>  make --jobs=4 install
> >> >>
> >> >> If you configured deal.II with ninja instead of make, then you would
> use
> >> >> the following command:
> >> >> ninja -j4 install
> >> >> ninja test
> >> >>
> >> >> Whether you use ninja or make to compile deal.II won't have any
> >> >> significant consequences on the outcome (although ninja is faster).
> >> >>
> >> >> Cheers
> >> >> Bruno
> >> >>
> >> >>
> >> >>
> >> >> On Monday, September 1, 2025 at 5:31:22 p.m. UTC+2
> [email protected]
> >> >> wrote:
> >> >>
> >> >>> Hi all,
> >> >>>
> >> >>> I built the program on Windows using CMake with Ninja instead of
> GNU Make:
> >> >>>
> >> >>> cmake -G Ninja -DCMAKE_INSTALL_PREFIX=...
> >> >>>
> >> >>> Configuration completed with only one warning:
> >> >>> "No cmake_minimum_required command is present. A line of code such
> as
> >> >>> cmake_minimum_required(VERSION 3.29) should be added at the top of
> the
> >> >>> file."
> >> >>>
> >> >>> It seems to have worked, but I’m not sure if that warning affects
> this
> >> >>> step.
> >> >>>
> >> >>> Furthermore, normally the followong instructions say to run:
> >> >>>
> >> >>> make --jobs=4 install
> >> >>> make test
> >> >>>
> >> >>> Could you please tell me how I should adapt these commands when
> using
> >> >>> Ninja, and whether I need to add any additional instructions?
> >> >>>
> >> >>> Best regards
> >> >>> paolo
> >> >>>
> >> >>>
> >> >>> --
> >> >> The deal.II project is located at http://www.dealii.org/
> >> >> For mailing list/forum options, see
> >> >> https://groups.google.com/d/forum/dealii?hl=en
> >> >> ---
> >> >> You received this message because you are subscribed to the Google
> Groups
> >> >> "deal.II User Group" group.
> >> >> To unsubscribe from this group and stop receiving emails from it,
> send an
> >> >> email to [email protected].
> >> >> To view this discussion visit
> >> >>
> https://groups.google.com/d/msgid/dealii/14871cdb-84ea-4acd-901b-8899f6cb6ee5n%40googlegroups.com
> >> >> <
> https://groups.google.com/d/msgid/dealii/14871cdb-84ea-4acd-901b-8899f6cb6ee5n%40googlegroups.com?utm_medium=email&utm_source=footer
> >
> >> >> .
> >> >>
> >>
> >> --
> >> The deal.II project is located at http://www.dealii.org/
> >> For mailing list/forum options, see
> https://groups.google.com/d/forum/dealii?hl=en
> >> ---
> >> You received this message because you are subscribed to the Google
> Groups "deal.II User Group" group.
> >> To unsubscribe from this group and stop receiving emails from it, send
> an email to [email protected].
> >> To view this discussion visit
> https://groups.google.com/d/msgid/dealii/87tt1krk6c.fsf%4043-1.org.
> >
> > --
> > The deal.II project is located at http://www.dealii.org/
> > For mailing list/forum options, see
> https://groups.google.com/d/forum/dealii?hl=en
> > ---
> > You received this message because you are subscribed to the Google
> Groups "deal.II User Group" group.
> > To unsubscribe from this group and stop receiving emails from it, send
> an email to [email protected].
> > To view this discussion visit
> https://groups.google.com/d/msgid/dealii/CAPGdp0oQ3fTF_bNTvRgJwaBH2Ni-AkQpu3XvXOiO1SXOO6P07Q%40mail.gmail.com
> .
>
> --
> The deal.II project is located at http://www.dealii.org/
> For mailing list/forum options, see
> https://groups.google.com/d/forum/dealii?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
> "deal.II User Group" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To view this discussion visit
> https://groups.google.com/d/msgid/dealii/CAOYDWbJZEb3rmtyJqW9vaemtoLfUM%2BMDzqfAmcbiT96DKa-uVA%40mail.gmail.com
> .
>

-- 
The deal.II project is located at http://www.dealii.org/
For mailing list/forum options, see 
https://groups.google.com/d/forum/dealii?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"deal.II User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion visit 
https://groups.google.com/d/msgid/dealii/CAPGdp0ogMhARH_0ZsO2py93vjSXS52sXFVBaNmG-xJrmmOTJTg%40mail.gmail.com.

Reply via email to