On Fri, Mar 04, 2022 at 09:26:04AM -0500, Steven A. Falco wrote:
> There is a new FTBFS for KiCad [1].  I filed an issue with KiCad [2] and got 
> a comment from the project leader:
> 
>     This looks like cmake issue to me. For some reason cmake is creating an 
> incorrect build folder:
> 
This is probably related: in cmake 3.22 (Fedora 36) and below, this
works:

```
mkdir some-dir
cd some-dir
%cmake ..
cd -

mkdir other-dir
cd other-dir
%cmake ..
cd -
```

Which is useful if you need to invoke `%cmake` several times, e.g. to
build against different Lua runtimes (e.g. lua-luv) or to do both static
and shared library builds (which we used to do for the folly stack).

Also: if the CMakeLists.txt is not in the root of your project tarball,
previously you can just do `%cmake actual-src-dir`.

In F37's cmake 3.23, it seems that `cmake -S . ..` has the `-S .` trump
the `..` when it comes to finding where CMakeLists.txt is, while
previously `..` wins.

I was working around it by simply `cd actual-src-dir` before `%cmake`,
but it turns out simply passing an additional `-S` works, e.g.:

```
mkdir some-dir
cd some-dir
%cmake -S ..
cd -
```

e.g.
https://src.fedoraproject.org/rpms/lua-luv/pull-request/3

Best regards,

-- 
Michel Alexandre Salim
identities: https://keyoxide.org/5dce2e7e9c3b1cffd335c1d78b229d2f7ccc04f2

Attachment: signature.asc
Description: PGP signature

_______________________________________________
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure

Reply via email to