Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

main: don't detect WebAssembly from the .wasm extension #4447

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from

Commits on Aug 29, 2024

  1. main: don't detect WebAssembly from the .wasm extension

    Currently this overrides GOOS/GOARCH, which are also used for wasm.
    This will break people who rely on a command like this:
    
        tinygo build -o foo.wasm path/to/package
    
    They will need to update to explicitly set the target, for example:
    
        tinygo build -o foo.wasm -target=wasm path/to/package
    
    Fixes: #4439
    aykevl committed Aug 29, 2024
    Configuration menu
    Copy the full SHA
    d80668b View commit details
    Browse the repository at this point in the history