Bring Some C++ to Xamarin Apps | The Xamarin Show

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 ต.ค. 2024

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

  • @LanDiEvil
    @LanDiEvil 5 ปีที่แล้ว +2

    The grander one's beard, the less broken one's code. With every 1mm added to MonteMangroe's beard, 10mm of red squiggling demons are vanquished from beneath my code. Like magic!

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

    I'd love to see an updated version of this for VS 2022 and MAUI. I've been experimenting with shared code libraries, etc., but it would be great to get validation and expert advice.

  • @akshaykulkarni7249
    @akshaykulkarni7249 5 ปีที่แล้ว +2

    This is productive.. gonna bring some of it in one of my POC this weekend

  • @damientohin9643
    @damientohin9643 4 ปีที่แล้ว

    Is it possible to debug native code from Visual studio ?

  • @rajanir5033
    @rajanir5033 3 ปีที่แล้ว

    How to we link C++ static Library to Xamarin for Android

  • @champakumari9740
    @champakumari9740 5 ปีที่แล้ว

    Can be worked with golang in xamarin.

  • @akashnagapure5956
    @akashnagapure5956 4 ปีที่แล้ว

    how to generate .so and .a file file for existing c++ project on windows ?

    • @harmonymoyo4420
      @harmonymoyo4420 3 ปีที่แล้ว

      Two Methods:
      Using WSL And Compiling on Linux
      - Basically use clang or gcc in Linux to compile
      Note: cppfilename , libfile are general names used for ilustration please substitute your own filenames also g++ is necessary for compiling C++ files even though compiler is called clang.
      - commands is for .o file : clang++ -c cppfilename.cpp
      - command is for .so file: clang++ -fPIC -shared -o libfile.so cppfilename.cpp -lc
      note either .c , .cpp or c++ extensions will work you may also add other compiler flags if you wish but these are the minimum required for it to work.
      Download Mingw Compiler and Compile like in Linux
      - Add mingw to PATH environment variable
      - then using command prompt compile as you would in Linux with clang or gcc
      If you still confused by this I refer you to a good link to a youtube video by Jacob Sorber th-cam.com/video/JbHmin2Wtmc/w-d-xo.html

    • @andreymoura9865
      @andreymoura9865 2 ปีที่แล้ว

      @@harmonymoyo4420 Harmony, Visual Studio can compile to different CPU configuration and generate libraries using the NDK with one click.

  • @cocobos
    @cocobos 5 ปีที่แล้ว

    Library is binary right?

    • @TVsBen
      @TVsBen 5 ปีที่แล้ว

      Yes, that was covered around the 2:25 mark.

  • @rafaelangelgonzalez1163
    @rafaelangelgonzalez1163 3 ปีที่แล้ว

    The video is not intuitive at all, it does not contribute, because they use a Mac? Are they from the Microsoft team?