[Bug 1900076] Re: file globbing broken on armhf

2021-07-20 Thread Brad King
See upstream cmake issue:
https://gitlab.kitware.com/cmake/cmake/-/issues/20568


** Bug watch added: gitlab.kitware.com/cmake/cmake/-/issues #20568
   https://gitlab.kitware.com/cmake/cmake/-/issues/20568

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1900076

Title:
  file globbing broken on armhf

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cmake/+bug/1900076/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1564741] Re: cmake crashed with SIGSEGV in cmTarget::GetProperty()

2016-04-27 Thread Brad King
This issue is fixed by upstream patch release 3.5.2.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1564741

Title:
  cmake crashed with SIGSEGV in cmTarget::GetProperty()

To manage notifications about this bug go to:
https://bugs.launchpad.net/cmake/+bug/1564741/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1203786] Re: Invalid handling of linker flags during build

2013-07-22 Thread Brad King
It sounds like you're trying to use target_link_libraries to pass link
flags that are not libraries.  There is a separate target property for
this:

 http://www.cmake.org/cmake/help/v2.8.11/cmake.html#prop_tgt:LINK_FLAGS

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1203786

Title:
  Invalid handling of linker flags during build

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cmake/+bug/1203786/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1203786] Re: Invalid handling of linker flags during build

2013-07-22 Thread Brad King
From target_link_libraries documentation:

 
http://www.cmake.org/cmake/help/v2.8.11/cmake.html#command:target_link_libraries
 Library dependencies are transitive by default. When this target is linked 
into another target then the libraries linked to this target will appear on the 
link line for the other target too.

For shared libraries one can set the LINK_INTERFACE_LIBRARIES property
to disable transitive behavior (see also the LINK_PRIVATE/LINK_PUBLIC
signature of target_link_libraries).  For static libraries there is no
way to disable transitive linking because it is necessary to satisfy
link dependencies of the objects in the static library itself.

Link flags meant to adjust library search behavior can go in
target_link_libraries calls, but those meant for things like linker
scripts should go in LINK_FLAGS.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1203786

Title:
  Invalid handling of linker flags during build

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cmake/+bug/1203786/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs