diff options
author | Ben Gamari <ben@smart-cactus.org> | 2021-11-17 13:10:17 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-11-18 22:27:20 -0500 |
commit | 0acbbd2021033245c2fb70e8fc8a79fcab168394 (patch) | |
tree | 4d697a0a7351a3d7c0adbd1d858d0f9613332cdd /testsuite/tests/driver | |
parent | 048f8d965b2f303a083e9e7c537c8b92a8bfb9d6 (diff) | |
download | haskell-0acbbd2021033245c2fb70e8fc8a79fcab168394.tar.gz |
testsuite: Use libc++ rather than libstdc++ in objcpp-hi
It appears that libstdc++ is no longer available in recent XCode
distributions.
Closes #16083.
Diffstat (limited to 'testsuite/tests/driver')
-rw-r--r-- | testsuite/tests/driver/objc/all.T | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/testsuite/tests/driver/objc/all.T b/testsuite/tests/driver/objc/all.T index 894de0cc46..1d5d134173 100644 --- a/testsuite/tests/driver/objc/all.T +++ b/testsuite/tests/driver/objc/all.T @@ -15,6 +15,5 @@ test('objc-hi', test('objcpp-hi', [ skip_if_not_osx, objcpp_src, - when(opsys('darwin'), expect_broken(16083)), expect_fail_for(['ghci']) ], - compile_and_run, ['-framework Foundation -lstdc++']) + compile_and_run, ['-framework Foundation -lc++']) |