[USBEHCI_NEW]

- Build fix #1 for mingw
- Define cxa_pure_virtual which is required that gcc is aware that it should really use the libc++ instead of falling back to libc

svn path=/branches/usb-bringup/; revision=51348
This commit is contained in:
Johannes Anderwald 2011-04-15 14:13:24 +00:00
parent 24188364ec
commit 297f2e3dd4
2 changed files with 25 additions and 0 deletions

View file

@ -9,6 +9,7 @@ add_library(usbehci SHARED
hcd_controller.cpp
hardware.cpp
misc.cpp
purecall.cpp
usbehci.rc)
target_link_libraries(usbehci

View file

@ -0,0 +1,24 @@
/*
* PROJECT: ReactOS Universal Serial Bus Bulk Enhanced Host Controller Interface
* LICENSE: GPL - See COPYING in the top level directory
* FILE: drivers/usb/usbehci_new/purecall.cpp
* PURPOSE: USB EHCI device driver.
* PROGRAMMERS:
* Michael Martin (michael.martin@reactos.org)
* Johannes Anderwald (johannes.anderwald@reactos.org)
*/
#include "usbehci.h"
extern "C" {
void
__cxa_pure_virtual()
{
// put error handling here
DbgBreakPoint();
}
}