meta: use clang -x c++ instead of clang++ #449
No reviewers
Labels
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: M-Labs/nac3#449
Loading…
Reference in New Issue
No description provided.
Delete Branch "no-clang++"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
To deal with
hydraJobs.nac3artiq-msys2
failing. See https://nixbld.m-labs.hk/build/161772.The issue:
llvm-nac3
innix/windows/default.nix
does not produceclang++.exe
, andnac3core/build.rs
is directly usingclang++
to compileirrt.c
, so buildingnac3core
would fail with "clang++
command not error".Pull request to change
nac3core/build.rs
from usingclang++
toclang -x c++
(in fact adding-x c++
is redundant,clang
could figure out that the sourceirrt.cpp
is C++ and compiles accordingly, but I will specify it anyway). The flakes have also been updated.