On Apr 30, 2007, at 12:45 PM, Robert McGwier wrote:
At Jonathan’s suggestion, I did a make distclean. THAT brick bat
through the window did the trick. It now compiles and completes
and make check works.
“make distclean” did indeed do the trick; should have tried that one
up front. Must be the cold (sniff, achooo) & medications.
Now that it’s getting further along (a clean checkout this time),
another issue:
should the file: gnuradio-core/src/lib/io/io.i
include (as written now, but doesn’t compile on OSX):
#include <gr_udp_sink.cc>
#include <gr_udp_source.cc>
or (as compiles on OSX):
#include <gr_udp_sink.h>
#include <gr_udp_source.h>
Here’s the “svn diff”
Index: io.i
— io.i (revision 5192)
+++ io.i (working copy)
@@ -35,8 +35,8 @@
#include <gr_message_source.h>
#include <gr_message_sink.h>
#include <gr_message_vector_source.h>
-#include <gr_udp_sink.cc>
-#include <gr_udp_source.cc>
+#include <gr_udp_sink.h>
+#include <gr_udp_source.h>
%}