Giter Site home page Giter Site logo

does it support esp32 about wolfmqtt HOT 3 CLOSED

wolfssl avatar wolfssl commented on July 17, 2024
does it support esp32

from wolfmqtt.

Comments (3)

kaleb-himes avatar kaleb-himes commented on July 17, 2024

Hi @milamber-ls,

Have you ever heard of the the process termed "cross-compiling"? To cross compile on one system for another target system you need to acquire the appropriate toolchain that can compile for the target device. Once acquired you can setup a configure like so:

GENERIC EXAMPLE:

./configure \
CC="/path/to/your/toolchain/x-x-x-gcc" \
AR="/path/to/your/toolchain/x-x-x-ar" \
AS="/path/to/your/toolchain/x-x-x-gcc" \
RANLIB="/path/to/your/toolchain/x-x-x-ranlib" \
LD="/path/to/your/toolchain/x-x-x-ld" \
--host=<your host> \
<your other configure options here> \
CFLAGS="-mcpu=<your cpu definition here> \
<other cflags here>" \
LIBS="<libs>"

SPECIFIC EXAMPLE:

./configure \
CC="/usr/local/gcc_arm/gcc-arm-none-eabi-7-2017-q4-major/bin/arm-none-eabi-gcc" \
AR="/usr/local/gcc_arm/gcc-arm-none-eabi-7-2017-q4-major/bin/arm-none-eabi-ar" \
AS="/usr/local/gcc_arm/gcc-arm-none-eabi-7-2017-q4-major/bin/arm-none-eabi-gcc" \
RANLIB="/usr/local/gcc_arm/gcc-arm-none-eabi-7-2017-q4-major/bin/arm-none-eabi-ranlib" \
LD="/usr/local/gcc_arm/gcc-arm-none-eabi-7-2017-q4-major/bin/arm-none-eabi-ld" \
--host=arm-none-eabi \
-enable-aesgcm --enable-ecc \
CFLAGS="-mcpu=cortex-m4 \
-Os -specs=rdimon.specs"  \
LIBS="-Wl,--start-group -lm -lgcc -lc -lrdimon -Wl,--end-group"

Regards,

KH

from wolfmqtt.

milamber-ls avatar milamber-ls commented on July 17, 2024

yes I have. cross compiling didn't work in esp-idf for windows. I haved installed the Linux version of esp-idf and I managed to successfully execute autogen and configure scripts. then I included them in an esp-idf project and wolfmqtt compiled. I am not sure about if i have set the #defines correcltly but I will figure it out. thank you for sharing this.

from wolfmqtt.

kaleb-himes avatar kaleb-himes commented on July 17, 2024

@milamber-ls,

Not a problem, thank you for reaching out with your questions, it's always our pleasure to help any way we can.

If you have any other questions you can reach our support staff for best response times at [email protected] or through wolfssl.zendesk.com.

Cheers,

KH

from wolfmqtt.

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.