Giter Club home page Giter Club logo

Comments (8)

jschwe avatar jschwe commented on July 20, 2024

Could you clarify what exactly is happening? Corrosion infernally uses Cargo, and cargo does something called feature unification in workspaces.

from corrosion.

flaviojs avatar flaviojs commented on July 20, 2024

Illustrative examples:

set ( RUST_FEATURES )
foreach( _feature IN ITEMS ENABLE_X ENABLE_Y ENABLE_Z )
  if( ${_feature} )
    list ( APPEND RUST_FEATURES "${_feature}" )
  endif()
endforeach()

staticlib_crate receives features (OK)

corrosion_import_crate ( MANIFEST_PATH "${CMAKE_SOURCE_DIR}/rust/staticlib_crate/Cargo.toml" FEATURES ${RUST_FEATURES} )

bin_crate complains about features unless i also add then to it's Cargo.toml (BAD)

corrosion_import_crate ( MANIFEST_PATH "${CMAKE_SOURCE_DIR}/rust/Cargo.toml" CRATES staticlib_crate bin_crate FEATURES ${RUST_FEATURES} )

staticlib_crate does not receive features (BAD)

corrosion_import_crate ( MANIFEST_PATH "${CMAKE_SOURCE_DIR}/rust/Cargo.toml" CRATES staticlib_crate bin_crate )
corrosion_set_features ( staticlib_crate FEATURES ${RUST_FEATURES} )

edit: maybe this is related... the two crates are independent. bin_crate does not depend on staticlib_crate

from corrosion.

jschwe avatar jschwe commented on July 20, 2024

What cmake version are you using?

from corrosion.

flaviojs avatar flaviojs commented on July 20, 2024

cmake 3.22.1

from corrosion.

jschwe avatar jschwe commented on July 20, 2024

bin_crate complains about features unless i also add then to it's Cargo.toml (BAD)

That is expected. The FEATURES argument only is intended for single crates and less so for workspaces.

For me, your example code fails to update the RUST_FEATURES variable. I don't quite follow what you want to achieve with the if.

set ( RUST_FEATURES )
foreach( _feature IN ITEMS ENABLE_X ENABLE_Y ENABLE_Z )
  if( ${_feature} )
    list ( APPEND RUST_FEATURES "${_feature}" )
  else()
        # fails with a fatal error on my machine.
        message(FATAL_ERROR "if evaluates to false")
  endif()
endforeach()

FYI, here is the test project that Corrosion has for enabling features: https://github.com/corrosion-rs/corrosion/blob/master/test/features/features/CMakeLists.txt
There is no bin crate in this constellation, but it shouldn't play a role either.

from corrosion.

flaviojs avatar flaviojs commented on July 20, 2024

Right, the features are originally cmake options that can be enabled and disabled.

option ( ENABLE_X "describe what X does" ON )
option ( ENABLE_Y "describe what Y does" ON )
option ( ENABLE_Z "describe what Z does" ON )

I was lazy and just named the rust features exactly the same.
In corrosion-rs you "enable" features by placing them after FEATURES.
The foreach loop tests if each option is enabled, collecting enabled ones to the temporary variable RUST_FEATURES, which is expanded after FEATURES.

I'll see if I can adapt the features test you pointed out to replicate the problem.

from corrosion.

flaviojs avatar flaviojs commented on July 20, 2024

I adapted the features test and was not able to reproduce.

Just in case I deleted the build dir of my code and reconfigured, now it works.
So I guess this is a false positive, and the cause was probably some temporary file from previous attempts.
They are deleted so I can't replicate the issue to find out more. Close the issue?

from corrosion.

jschwe avatar jschwe commented on July 20, 2024

Okay, great to hear that it works for you now.

from corrosion.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.