Coder Social home page Coder Social logo

Comments (4)

StableCoder avatar StableCoder commented on May 29, 2024

Check out 4af5b40.

I've added an option to target_code_coverage named PRE_ARGS. Much like the original ARGS, this will add the provided arguments to the start of the call, so the whole call becomes:

$PRE_ARGS ccov-* $ARGS

So you should be able to do something like

target_code_coverage(
    ...
    PRE_ARGS /usr/bin/qemu-aarch64-static -L /usr/aarch64-linux-gnu -E LD_LIBRARY_PATH=/some/path
)

Let me know if that works well enough.

from cmake-scripts.

Blumentopf99 avatar Blumentopf99 commented on May 29, 2024

Thanks a lot for your quick support! Meanwhile, I discovered a simpler solution. CMake has a feature for exactly that problem using the variable CMAKE_CROSSCOMPILING_EMULATOR when CMAKE_CROSSCOMPILING is turned ON. We set CMAKE_CROSSCOMPILING_EMULATOR already and everything works fine when I patch code-coverage.cmake to use CMAKE_CROSSCOMPILING_EMULATOR:

add_custom_target(
  ccov-capture-${target_code_coverage_COVERAGE_TARGET_NAME}
  COMMAND ${CMAKE_COMMAND} -E rm -f ${COVERAGE_INFO}
  COMMAND ${LCOV_PATH} --directory ${CMAKE_BINARY_DIR} --zerocounters
  COMMAND ${CMAKE_CROSSCOMPILING_EMULATOR} $<TARGET_FILE:${TARGET_NAME}> ${target_code_coverage_ARGS}
  COMMAND
    ${LCOV_PATH} --directory ${CMAKE_BINARY_DIR} --base-directory
    ${CMAKE_SOURCE_DIR} --capture ${EXTERNAL_OPTION} --output-file
    ${COVERAGE_INFO}
  COMMAND ${EXCLUDE_COMMAND}
  DEPENDS ${TARGET_NAME})

If somebody doesn't use cross-compilation then CMAKE_CROSSCOMPILING is turned OFF. That should be considered somehow.

from cmake-scripts.

StableCoder avatar StableCoder commented on May 29, 2024

Nice.

I've added ${CMAKE_CROSSCOMPILING_EMULATOR} to e4e0c48, so it's now

COMMAND ${CMAKE_CROSSCOMPILING_EMULATOR}
                      ${target_code_coverage_PRE_ARGS} 
                      $<TARGET_FILE:${TARGET_NAME}> 
                      ${target_code_coverage_ARGS}

Luckily, if no cross-compiling is specified, the CMAKE_CROSSCOMPILING_EMULATOR is just empty.

from cmake-scripts.

Blumentopf99 avatar Blumentopf99 commented on May 29, 2024

Thanks, that works like a charm!

COMMAND ${target_code_coverage_PRE_ARGS} 
                      ${CMAKE_CROSSCOMPILING_EMULATOR}
                      $<TARGET_FILE:${TARGET_NAME}> 
                      ${target_code_coverage_ARGS}

from cmake-scripts.

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.