We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07484cb commit 06e7f49Copy full SHA for 06e7f49
test/test_bitfield.jl
@@ -1,3 +1,4 @@
1
+import Libdl: dlext
2
import CMake_jll: cmake
3
using Clang.Generators
4
@@ -47,8 +48,8 @@ function build_libbitfield()
47
48
options["general"]["library_name"] = "\"$(escape_string(lib_path))\""
49
options["general"]["output_file_path"] = output_path
50
- run(`file $(lib_path)`)
51
- run(`ldd $(lib_path)`)
+ run(`file $(lib_path).$(dlext)`)
52
+ run(`ldd $(lib_path).$(dlext)`)
53
54
ctx = create_context(headers, args, options)
55
build!(ctx)
0 commit comments