• Home
  • Raw
  • Download

Lines Matching +full:debian +full:- +full:clang

8 mingw-w64-x86_64-headers-git-10.0.0.r14.ga08c638f8-1-any.pkg.tar.zst
9 mingw-w64-x86_64-vulkan-loader-1.3.211-1-any.pkg.tar.zst
10 mingw-w64-x86_64-libelf-0.8.13-6-any.pkg.tar.zst
11 mingw-w64-x86_64-zlib-1.2.12-1-any.pkg.tar.zst
12 mingw-w64-x86_64-zstd-1.5.2-2-any.pkg.tar.zst
17 wget -q https://mirror.msys2.org/mingw/mingw64/$i
18 tar xf $i --strip-components=1 -C /usr/x86_64-w64-mingw32/
21 rm -rf ~/tmp
23 mkdir -p /usr/x86_64-w64-mingw32/bin
25 # The output of `wine64 llvm-config --system-libs --cxxflags mcdisassembler`
26 # containes absolute path like '-IZ:'
27 # The sed is used to replace `-IZ:/usr/x86_64-w64-mingw32/include`
28 # to `-I/usr/x86_64-w64-mingw32/include`
30 # Debian's pkg-config wrapers for mingw are broken, and there's no sign that
32 # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=930492
33 cat >/usr/x86_64-w64-mingw32/bin/pkg-config <<EOF
36 PKG_CONFIG_LIBDIR=/usr/x86_64-w64-mingw32/lib/pkgconfig:/usr/x86_64-w64-mingw32/share/pkgconfig pkg
38 chmod +x /usr/x86_64-w64-mingw32/bin/pkg-config
40 cat >/usr/x86_64-w64-mingw32/bin/llvm-config <<EOF
42 wine64 llvm-config \$@ | sed -e "s,Z:/,/,gi"
44 chmod +x /usr/x86_64-w64-mingw32/bin/llvm-config
46 cat >/usr/x86_64-w64-mingw32/bin/clang <<EOF
48 wine64 clang \$@
50 chmod +x /usr/x86_64-w64-mingw32/bin/clang
52 cat >/usr/x86_64-w64-mingw32/bin/llvm-as <<EOF
54 wine64 llvm-as \$@
56 chmod +x /usr/x86_64-w64-mingw32/bin/llvm-as
58 cat >/usr/x86_64-w64-mingw32/bin/llvm-link <<EOF
60 wine64 llvm-link \$@
62 chmod +x /usr/x86_64-w64-mingw32/bin/llvm-link
64 cat >/usr/x86_64-w64-mingw32/bin/opt <<EOF
68 chmod +x /usr/x86_64-w64-mingw32/bin/opt
70 cat >/usr/x86_64-w64-mingw32/bin/llvm-spirv <<EOF
72 wine64 llvm-spirv \$@
74 chmod +x /usr/x86_64-w64-mingw32/bin/llvm-spirv