|
| 1 | +name: Issue report |
| 2 | +description: Report something that is broken, missing or wrong. |
| 3 | + |
| 4 | +body: |
| 5 | + - type: checkboxes |
| 6 | + id: acknowledgments |
| 7 | + attributes: |
| 8 | + label: Checklist |
| 9 | + options: |
| 10 | + - label: I've looked through the [issues and pull requests](https://github.com/cross-rs/cross/issues?q=) for similar reports |
| 11 | + required: true |
| 12 | + - type: textarea |
| 13 | + id: description |
| 14 | + validations: |
| 15 | + required: true |
| 16 | + attributes: |
| 17 | + label: Describe your issue |
| 18 | + description: | |
| 19 | + Write a description of your issue. Include error messages if there are any. |
| 20 | + placeholder: | |
| 21 | + Examples: |
| 22 | + - cross no longer compiles my project after upgrade. |
| 23 | + - I have trouble doing X. |
| 24 | + - Feature X has stopped working for me. |
| 25 | +
|
| 26 | + - type: dropdown |
| 27 | + id: target |
| 28 | + attributes: |
| 29 | + label: What target(s) are you cross-compiling for? |
| 30 | + description: You may select more than one or none if this is not applicable (N/A). |
| 31 | + multiple: true |
| 32 | + options: |
| 33 | + - aarch64-linux-android |
| 34 | + - aarch64-unknown-linux-gnu |
| 35 | + - aarch64-unknown-linux-musl |
| 36 | + - arm-linux-androideabi |
| 37 | + - arm-unknown-linux-gnueabi |
| 38 | + - arm-unknown-linux-gnueabihf |
| 39 | + - arm-unknown-linux-musleabi |
| 40 | + - arm-unknown-linux-musleabihf |
| 41 | + - armv5te-unknown-linux-gnueabi |
| 42 | + - armv5te-unknown-linux-musleabi |
| 43 | + - armv7-linux-androideabi |
| 44 | + - armv7-unknown-linux-gnueabihf |
| 45 | + - armv7-unknown-linux-musleabihf |
| 46 | + - asmjs-unknown-emscripten |
| 47 | + - i586-unknown-linux-gnu |
| 48 | + - i586-unknown-linux-musl |
| 49 | + - i686-linux-android |
| 50 | + - i686-pc-windows-gnu |
| 51 | + - i686-unknown-freebsd |
| 52 | + - i686-unknown-linux-gnu |
| 53 | + - i686-unknown-linux-musl |
| 54 | + - mips64el-unknown-linux-gnuabi64 |
| 55 | + - mips64el-unknown-linux-muslabi64 |
| 56 | + - mips64-unknown-linux-gnuabi64 |
| 57 | + - mips64-unknown-linux-muslabi64 |
| 58 | + - mipsel-unknown-linux-gnu |
| 59 | + - mipsel-unknown-linux-musl |
| 60 | + - mips-unknown-linux-gnu |
| 61 | + - mips-unknown-linux-musl |
| 62 | + - powerpc64le-unknown-linux-gnu |
| 63 | + - powerpc64-unknown-linux-gnu |
| 64 | + - powerpc-unknown-linux-gnu |
| 65 | + - riscv64gc-unknown-linux-gnu |
| 66 | + - s390x-unknown-linux-gnu |
| 67 | + - sparc64-unknown-linux-gnu |
| 68 | + - sparcv9-sun-solaris |
| 69 | + - thumbv6m-none-eabi |
| 70 | + - thumbv7em-none-eabi |
| 71 | + - thumbv7em-none-eabihf |
| 72 | + - thumbv7m-none-eabi |
| 73 | + - wasm32-unknown-emscripten |
| 74 | + - x86_64-linux-android |
| 75 | + - x86_64-pc-windows-gnu |
| 76 | + - x86_64-sun-solaris |
| 77 | + - x86_64-unknown-freebsd |
| 78 | + - x86_64-unknown-linux-gnu |
| 79 | + - x86_64-unknown-linux-musl |
| 80 | + - x86_64-unknown-netbsd |
| 81 | + - other (specify in description) |
| 82 | + |
| 83 | + - type: checkboxes |
| 84 | + id: host-system |
| 85 | + attributes: |
| 86 | + label: Which operating system is the host (e.g computer cross is on) running? |
| 87 | + description: You may select more than one or none if N/A. |
| 88 | + options: |
| 89 | + - label: macOS |
| 90 | + - label: Windows |
| 91 | + - label: Linux / BSD |
| 92 | + - label: other OS (specify in description) |
| 93 | + |
| 94 | + - type: checkboxes |
| 95 | + id: host-arch |
| 96 | + attributes: |
| 97 | + label: What architecture is the host? |
| 98 | + description: You may select more than one or none if N/A. |
| 99 | + options: |
| 100 | + - label: x86_64 / AMD64 |
| 101 | + - label: arm32 |
| 102 | + - label: arm64 (including Mac M1) |
| 103 | + |
| 104 | + - type: checkboxes |
| 105 | + id: container-engine |
| 106 | + attributes: |
| 107 | + label: What container engine is cross using? |
| 108 | + description: You may select more than one or none if N/A. |
| 109 | + options: |
| 110 | + - label: docker |
| 111 | + - label: podman |
| 112 | + - label: other container engine (specify in description) |
| 113 | + |
| 114 | + - type: input |
| 115 | + id: cross-version |
| 116 | + validations: |
| 117 | + required: true |
| 118 | + attributes: |
| 119 | + label: cross version |
| 120 | + description: The version of cross given with `cross -V` or `cross --version` |
| 121 | + placeholder: cross 0.4.2 (c8df353 2025-01-01) |
| 122 | + |
| 123 | + - type: textarea |
| 124 | + id: mcve |
| 125 | + attributes: |
| 126 | + label: Example |
| 127 | + description: Please provide a short, complete example of the issue if possible. |
| 128 | + placeholder: | |
| 129 | + ```sh |
| 130 | + git clone https://github.com/ghost/my_mcve |
| 131 | + cross build --target x86_65-unknown-linux-gnu |
| 132 | + ``` |
| 133 | +
|
| 134 | + Gives the error message `could not discover target specification` |
| 135 | +
|
| 136 | + - type: textarea |
| 137 | + id: additional |
| 138 | + attributes: |
| 139 | + label: Additional information / notes |
| 140 | + description: Provide any information you think is relevant to the issue |
| 141 | + placeholder: It builds on `asmjs-unknown-emscripten` |
0 commit comments