build: handle systems where libc++ is default
ld: error: unable to find library -lstdc++fs ld: error: unable to find library -lc++abipull/425/head
parent
1dc557456e
commit
fe2dd1e843
10
meson.build
10
meson.build
|
@ -17,11 +17,13 @@ cpp_link_args = []
|
||||||
if get_option('libcxx')
|
if get_option('libcxx')
|
||||||
cpp_args += ['-stdlib=libc++']
|
cpp_args += ['-stdlib=libc++']
|
||||||
cpp_link_args += ['-stdlib=libc++', '-lc++abi']
|
cpp_link_args += ['-stdlib=libc++', '-lc++abi']
|
||||||
|
endif
|
||||||
|
|
||||||
if compiler.has_link_argument('-lc++fs')
|
if compiler.has_link_argument('-lc++fs')
|
||||||
cpp_link_args += ['-lc++fs']
|
cpp_link_args += ['-lc++fs']
|
||||||
endif
|
elif compiler.has_link_argument('-lc++experimental')
|
||||||
else
|
cpp_link_args += ['-lc++experimental']
|
||||||
|
elif compiler.has_link_argument('-lstdc++fs')
|
||||||
cpp_link_args += ['-lstdc++fs']
|
cpp_link_args += ['-lstdc++fs']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue