summaryrefslogtreecommitdiffstats
path: root/testsuite/usb01
diff options
context:
space:
mode:
authorJulien Delange <julien.delange@gmail.com>2012-03-26 09:51:49 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2012-03-26 09:51:49 -0500
commita52104cf463a461f6fcccd2cc6b11bd6691908c8 (patch)
tree31a617ce2a74d3e799bd95fd634332f20347583f /testsuite/usb01
parentUse new block device API (diff)
downloadrtems-libbsd-a52104cf463a461f6fcccd2cc6b11bd6691908c8.tar.bz2
e1000 driver now compiles with fewer modifications
- Change some include path in the e1000 drivers - Add some files from the FreeBSD source tree (modification in freebsd-to-rtems.py) - Avoid inconsistent functions declarations: the bool_t and/or boolean_t are not the same between rtems and freebsd so that a function with the prototype bool_t foobar() and another boolean_t foobar() does not compile on rtems. (see if_igb.c for example) Joel Note: These are still inconsistent on the FreeBSD side and need to be addressed by them. We will just make the prototype match the body until they give us a solution.
Diffstat (limited to 'testsuite/usb01')
-rw-r--r--testsuite/usb01/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/usb01/Makefile b/testsuite/usb01/Makefile
index 6f5aae94..732a4e31 100644
--- a/testsuite/usb01/Makefile
+++ b/testsuite/usb01/Makefile
@@ -25,7 +25,7 @@ CXXFLAGS += $(CFLAGS)
all: $(APP)
$(APP): $(APP_O_FILES)
- $(CXX) $(CXXFLAGS) $^ $(LINK_LIBS) -o $(APP)
+ $(CC) $(CXXFLAGS) $^ $(LINK_LIBS) -o $(APP)
clean:
rm -f $(APP_O_FILES) $(APP_DEP_FILES)