Skip to content

Commit 5eeb07e

Browse files
owainkenwayuclgiordano
authored andcommitted
Change default C++ compiler from g++-10 to g++ (#17)
1 parent f4645fa commit 5eeb07e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deps/build.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ DefaultBindgenContext() = DefaultBindgenContext([], [], Set([]), Set([]), "", ""
3434

3535

3636
function get_system_includes()::Vector{String}
37-
cxx = get(ENV, "CXX", "g++-10")
37+
cxx = get(ENV, "CXX", "g++")
3838
io = IOBuffer()
3939
readchomp(pipeline(`$(cxx) -x c++ -E -Wp,-v - -fsyntax-only`; stdin=IOBuffer(""), stderr=io))
4040
m = match(r"#include <\.\.\.> search starts here:(.*)End of search list\."s, String(take!(io)))[1]

0 commit comments

Comments
 (0)