Programming Language with LLVM [2/20] LLVM program structure | Module

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 ม.ค. 2025

ความคิดเห็น • 13

  • @DmitrySoshnikov-education
    @DmitrySoshnikov-education  ปีที่แล้ว

    ⭐ Enroll: dmitrysoshnikov.com/courses/programming-language-with-llvm/
    👉 DS Education: www.dmitrysoshnikov.education/p/programming-language-with-llvm/
    📚 In which order to take my courses: dmitrysoshnikov.com/courses/compiler-engineer-path/

  • @Wtf95
    @Wtf95 ปีที่แล้ว

    Невероятная подача! Даже учить английский можно! Браво!

  • @andre.gabriel
    @andre.gabriel ปีที่แล้ว +3

    This is awesome, very clear explanation. Thanks for sharing

  • @Ilya-hi9xq
    @Ilya-hi9xq 4 หลายเดือนก่อน +1

    здравствуйте,подскажите,пожалуйста,а как установить llvm/IR на windows? я скачал llvm с оф. сайта,но при попытке сделать include этих библиотек,ide не может их найти

    • @h4wk_0
      @h4wk_0 4 หลายเดือนก่อน

      ты пофиксил или нет?

    • @Ilya-hi9xq
      @Ilya-hi9xq 4 หลายเดือนก่อน

      @@h4wk_0 пофиксил

  • @TheBonobo79
    @TheBonobo79 ปีที่แล้ว +1

    Hi Dmitry
    Is there a new course available on Udemy for this?

  • @aaquibhassan1359
    @aaquibhassan1359 ปีที่แล้ว

    clang: error: no such file or directory: 'llvm-config --cxxflags --ldflags --system-libs --libs core'

    • @DmitrySoshnikov-education
      @DmitrySoshnikov-education  ปีที่แล้ว +1

      Have you installed llvm-config? Try running this command outside of clang. Also, notice, you need to use backtick symbols, ` `, not ' ' - `llvm-config --cxxflags --ldflags --system-libs --libs core`. Alternatively you can use $() syntax: $(llvm-config --cxxflags --ldflags --system-libs --libs core)

    • @aaquibhassan1359
      @aaquibhassan1359 ปีที่แล้ว

      @@DmitrySoshnikov-education Thankyou So much

  • @steveh4595
    @steveh4595 ปีที่แล้ว

    That's a huge binary for producing nothing. Are there more cache hit problems when you actually have a full working compiler?

    • @DmitrySoshnikov-education
      @DmitrySoshnikov-education  ปีที่แล้ว

      Right, cache hits is a property of runtime optimizations. Try playing with -O3 and other C++/clang optimizations for the binary size.