Giter Club home page Giter Club logo

Comments (7)

krzysztof-jusiak avatar krzysztof-jusiak commented on June 11, 2024 1

Thank you for checking, indeed there is something wrong with the clang-15 version :/ the builtins seem not to work and clang-15 doesn't have access to <source_location>. I'll post on the llvm project to see whether anyone can take a look, thanks again for bringing that up.

from ut.

krzysztof-jusiak avatar krzysztof-jusiak commented on June 11, 2024

Hmm, that looks like the compiler used doesn't support source_location. Can you share the compiler and version used?

The following check is being done to detect support for the source location on the library side.

#if defined(__cpp_lib_source_location)                                 
using source_location = std::source_location;                          
#else                                                                  
class source_location {                                                
 public:                                                               
  [[nodiscard]] static constexpr auto current(                         
#if (__has_builtin(__builtin_FILE) and __has_builtin(__builtin_LINE))  
      const char* file = __builtin_FILE(), int line = __builtin_LINE() 
#else                                                                  
      const char* file = "unknown", int line = {}                      
#endif                                                                 

from ut.

dingari avatar dingari commented on June 11, 2024

Ah, I see. I think I'm using the most recent Clang version on macOS

Apple clang version 15.0.0 (clang-1500.0.40.1)
Target: arm64-apple-darwin23.0.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin

from ut.

krzysztof-jusiak avatar krzysztof-jusiak commented on June 11, 2024

Ohh, that's bad, it seems like clang-15 introduced some bug to their builtin :/

Looking at godbolt, clang<15 works, clang-15 doens't work and clang-trunk works again. gcc seem to work just fine in all available versions.

https://godbolt.org/z/8a183GWvv

Let me dig in a bit further to see whether there is a wknd for that or the clang broke soure_lcoation builtin alltogether in 15. Note. it's also affecting not Apple clang.

from ut.

krzysztof-jusiak avatar krzysztof-jusiak commented on June 11, 2024

It also seems related to clang using libstdc++ from gcc.
It seems to work on clang 15 with libc++. Do you use libstdc++ by any chance?

https://godbolt.org/z/3sn1MdM53

from ut.

dingari avatar dingari commented on June 11, 2024

Hmmm wow, this is strange!

I'm using libc++, but I guess Apple's Clang distribution is broken, at least in this version then.

from ut.

dingari avatar dingari commented on June 11, 2024

Okay, I just tested with Clang 16 from brew and can confirm that works fine with std::source_location, so I guess Apple will just have to sort it out in their own time...

from ut.

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.