574dd70006
The compiler now has a native codegen on aarch64. LLVM backend is now optional, and is disabled by default. The full release note is too long to paste here. See: https://downloads.haskell.org/~ghc/9.2.1/docs/html/users_guide/9.2.1-notes.html
9 lines
179 B
Bash
9 lines
179 B
Bash
#!/bin/sh
|
|
#
|
|
GHC_VERSION="@GHC_VERSION@"
|
|
|
|
case ${STAGE} in
|
|
DEINSTALL)
|
|
${RM} -f ${PKG_PREFIX}/lib/${PKGBASE}-${GHC_VERSION}/package.conf.d/package.cache
|
|
;;
|
|
esac
|