11

Consider this code (badcast.cpp):

#include <exception>
#include <typeinfo>
#include <stdio.h>

class foo {
public:
    virtual ~foo() {}
};

class bar: public foo {
public:
    int val;
    bar(): val(123) {}
};

static void
cast_test(const foo &f) {
    try {
        const bar &b = dynamic_cast<const bar &>(f);
        printf("%d\n", b.val);
    } catch (const std::bad_cast &) {
        printf("bad cast\n");
    }
}

int main() {
    foo f;
    cast_test(f);
    return 0;
}

FreeBSD 9.1:

$ g++ badcast.cpp -o badcast -Wall && ./badcast
terminate called after throwing an instance of 'std::bad_cast'
  what():  std::bad_cast
Abort trap (core dumped)

$ g++ badcast.cpp -o badcast -frtti -fexceptions -Wall && ./badcast
terminate called after throwing an instance of 'std::bad_cast'
  what():  std::bad_cast
Abort trap (core dumped)

$ gcc -v
Using built-in specs.
Target: amd64-undermydesk-freebsd
Configured with: FreeBSD/amd64 system compiler
Thread model: posix
gcc version 4.2.1 20070831 patched [FreeBSD]

$ uname -a
FreeBSD freebsd9 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012     [email protected]:/usr/obj/usr/src/sys/GENERIC  amd64

Debian Linux 6:

$ g++ badcast.cpp -o badcast -Wall && ./badcast
bad cast

OS X 10.8:

$ g++ badcast.cpp -o badcast -Wall && ./badcast
bad cast

Why does catching bad_cast not work on FreeBSD?

6
  • Seems like a bug in the standard library. +1 anyway.
    – user529758
    Commented Jan 19, 2013 at 11:12
  • have you checked this code on another platform? maybe unused variable is just optimized out? just guess... Commented Jan 19, 2013 at 11:25
  • Bad cast on VC++2010. +1
    – SChepurin
    Commented Jan 19, 2013 at 11:48
  • this code works on FreeBSD 9.0 amd64.
    – Thibault
    Commented Jan 19, 2013 at 12:03
  • 1
    I've reported this bug at freebsd.org/cgi/query-pr.cgi?pr=175453
    – Hongli
    Commented Jan 20, 2013 at 17:51

1 Answer 1

3

As a wild guess, there’s a chance in FreeBSD you might be using LLVM’s new libc++, instead of the old GNU libstdc++. FreeBSD has been working towards switching over to the LLVM toolchain, away from GNU GPL licensed software.

Apple’s moving that way too, and in the past I’ve ran into issues developing for Mac using libc++ that libstdc++ didn’t have (especially with Boost).

You can use ldd to confirm what libraries you’re linking against:

ldd ./badcast

If it is linking against libc++, you might want to file the bug and test case with the LLVM project.

1
  • The FreeBSD guys are working on my bug report. So far they mentioned something about symbol collisions between the various C++ libraries that are apparently being loaded.
    – Hongli
    Commented Jan 23, 2013 at 0:37

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.