Skip to content

Commit

Permalink
Add -luuid
Browse files Browse the repository at this point in the history
Signed-off-by: Etienne Millon <me@emillon.org>
  • Loading branch information
emillon committed Jul 20, 2022
1 parent 965f45c commit cba3bfc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions boot/libs.ml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ let link_flags =
; "-cclib"
; "-framework CoreServices"
])
; ("win32", [ "-cclib"; "-lshell32"; "-cclib"; "-lole32" ])
; ("win64", [ "-cclib"; "-lshell32"; "-cclib"; "-lole32" ])
; ("mingw32", [ "-cclib"; "-lshell32"; "-cclib"; "-lole32" ])
; ("mingw64", [ "-cclib"; "-lshell32"; "-cclib"; "-lole32" ])
; ("win32", [ "-cclib"; "-lshell32"; "-cclib"; "-lole32" ; "-cclib"; "-luuid" ])
; ("win64", [ "-cclib"; "-lshell32"; "-cclib"; "-lole32" ; "-cclib"; "-luuid" ])
; ("mingw32", [ "-cclib"; "-lshell32"; "-cclib"; "-lole32"; "-cclib"; "-luuid" ])
; ("mingw64", [ "-cclib"; "-lshell32"; "-cclib"; "-lole32"; "-cclib"; "-luuid" ])
]
2 changes: 1 addition & 1 deletion otherlibs/xdg/gen_flags/gen_flags.ml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
let () =
match Sys.argv.(1) with
| "Win32" -> print_endline "(-lshell32 -lole32)"
| "Win32" -> print_endline "(-lshell32 -lole32 -luuid)"
| _ -> print_endline "()"

0 comments on commit cba3bfc

Please sign in to comment.