Giter Site home page Giter Site logo

Comments (7)

stephenberry avatar stephenberry commented on June 2, 2024

@arturbac, do you know how to get the address sanitizer running on a macOS GitHub action? I tried to add address sanitizer flags to the CMake in this merge request (#777), but it isn't linking to the address sanitizer. I'm not sure how to link against the address sanitizer library in Clang in my CMake.

from glaze.

arturbac avatar arturbac commented on June 2, 2024

I am working on linux, so I just added to Your profile( temporary didn't have time to define CMakeUserProfile from scratch) and used that profile

        {
            "name": "dev-release-arturbac",
            "displayName": "Developer Mode",
            "description": "Builds Glaze w/ tests and downloaded test dependencies",
            "generator": "Ninja",
            "cacheVariables": {
                "CMAKE_BUILD_TYPE": "Release",
                "glaze_DEVELOPER_MODE": true,
                "BUILD_TESTING": true,
                "CMAKE_EXPORT_COMPILE_COMMANDS": true,
                "CMAKE_C_COMPILER": "clang-17",
                "CMAKE_CXX_COMPILER": "clang++-17",
                "CMAKE_CXX_FLAGS" : "-ggdb -fvisibility=default -fno-omit-frame-pointer -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=undefined",
                "CMAKE_EXE_LINKER_FLAGS" : "-fsanitize=address -fsanitize=undefined"
            }
        },

from glaze.

arturbac avatar arturbac commented on June 2, 2024

You can test directly adding -lasan and -lubsan to link libs of target, I used it that way in the past

from glaze.

arturbac avatar arturbac commented on June 2, 2024

And one thing to note for using ubsan at github action You probably want it to stop exection and fail, so set ENV
UBSAN_OPTIONS=print_stacktrace=1:halt_on_error=1

from glaze.

stephenberry avatar stephenberry commented on June 2, 2024

Thanks for these tips.

from glaze.

arturbac avatar arturbac commented on June 2, 2024

And if asan fail that was not first initialized
ASAN_OPTIONS=check_initialization_order=0
IMO just ignore unless You have plenty of globals that can fail before asan library constructor init or use LD_PRELOAD or add -lasan -lubsan to LINK_FLAGS or something
But they are writting that
Note that this option is not supported on macOS.

from glaze.

stephenberry avatar stephenberry commented on June 2, 2024

I think I got it added in #779

from glaze.

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.