├── .clang-format ├── .gitignore ├── README.md ├── Test.hs └── macos11ghcwa.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yairchu/macos11-haskell-workaround/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.dylib 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yairchu/macos11-haskell-workaround/HEAD/README.md -------------------------------------------------------------------------------- /Test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yairchu/macos11-haskell-workaround/HEAD/Test.hs -------------------------------------------------------------------------------- /macos11ghcwa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yairchu/macos11-haskell-workaround/HEAD/macos11ghcwa.c --------------------------------------------------------------------------------