Code Monkey home page Code Monkey logo

Comments (3)

valeros avatar valeros commented on June 12, 2024

Hi @hexeguitar, are you sure it's .S (uppercase), not .s? If so, please provide a minimal project to reproduce the issue.

from platform-espressif32.

hexeguitar avatar hexeguitar commented on June 12, 2024

Oh, you're right. My files had lowercase extension. With uppercase all works fine.
Interestingly, the lowercase "s" files are also getting picked up by the asm compiler, yet always with the wrong flag. This happens on Linux and Windows.
To test it even an empty testasm.s file in the project triggers it, pio run -v output:

No dependencies
Building in release mode
xtensa-esp32s3-elf-as -mlongcalls -o .pio/build/esp32dev/src/testasm.s.o src/testasm.s
xtensa-esp32s3-elf-as: unrecognized option '-mlongcalls'

from platform-espressif32.

valeros avatar valeros commented on June 12, 2024

The problem here is that IDF's build system used behind the scene doesn't provide default assembly flags as they always run both .S and .s (assembly with and without preprocessing respectively) through generic compiler. Their approach differs a bit from ours, so I've pushed a small fix to the dev branch, so that the build environment for the .s files won't contain any build flags by default. It means that you will need to set raw assembly flags via an extra script run in pre: mode, for example:

[env:esp32dev]
platform = espressif32
framework = espidf
board = esp32dev
extra_scripts = 
    pre:add_asmflags.py

add_asmflags.py:

Import ("env")

env.Append(
    ASFLAGS=["--longcalls"]
)

from platform-espressif32.

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.