Skip to content
Snippets Groups Projects
  1. Jun 02, 2016
    • Brad King's avatar
    • Brad King's avatar
      Fix crash on $<TARGET_PROPERTY:...,LOCATION> genex (#16134) · f500a784
      Brad King authored
      Policy CMP0026 deprecated the LOCATION property, and we have long
      provided a $<TARGET_FILE:...> generator expression.  However, if
      a project tries to use $<TARGET_PROPERTY:...,LOCATION> we should
      at least not crash.
      
      The compatibility implementation of the LOCATION property uses
      cmGlobalGenerator::CreateGenerationObjects to create the structures
      needed to evaluate the property before generation starts.  The
      implementation assumed that accessing the property could only be done
      during configuration (via the typical get_property command use case).
      The $<TARGET_PROPERTY:...,LOCATION> genex causes the LOCATION property
      to be accessed during generation.  Calling CreateGenerationObjects
      during generation blows away all the objects currently being used for
      generation and is not safe.  Add a condition to call it only when
      configuration is not finished.
      f500a784
    • Brad King's avatar
      Merge branch 'fix-ti-link-order' into release · aa483a40
      Brad King authored
      aa483a40
    • Alexander Stein's avatar
      Compiler/TI: Pass libraries as last part to linker · 89317915
      Alexander Stein authored and Brad King's avatar Brad King committed
      
      If e.g. libc.a is passed before any objects the linker raises the follwing
      warning: cannot resolve archive libc.a to a compatible library, as no
      input files have been encountered
      In the end the library is skipped and missing symbols occur.
      
      Signed-off-by: default avatarAlexander Stein <alexander.stein@systec-electronic.com>
      89317915
  2. Jun 01, 2016
  3. May 31, 2016
  4. May 30, 2016
  5. May 29, 2016
  6. May 28, 2016
  7. May 27, 2016
  8. May 26, 2016
Loading