FIXME: arm(32) may be applicable here. I haven't tested yet.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
Looks great!
% cd utils/bazel % bazel build --config=generic_clang @llvm-project//llvm:Support --copt=-w
I can find sse and avx .o files in bazel-out/k8-fastbuild/bin/external/llvm-project/llvm/libSupport.so-2.params.
utils/bazel/llvm-project-overlay/llvm/BUILD.bazel | ||
---|---|---|
205 | https://docs.bazel.build/versions/main/configurable-attributes.html#the-default-condition there should be a //conditions:default condition for non-aarch64-nonx86_64 CPUs. |
utils/bazel/llvm-project-overlay/llvm/BUILD.bazel | ||
---|---|---|
205 | I misunderstood to expect noop w/o default and I have confirmed default:[] is essential here. Thanks! |
https://docs.bazel.build/versions/main/configurable-attributes.html#the-default-condition there should be a //conditions:default condition for non-aarch64-nonx86_64 CPUs.