Update of /cvsroot/opensdk/openSDK
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv4401
Modified Files:
Makefile TECH_NOTES
Log Message:
point people to the website (currently more up-to-date)
Index: Makefile
===================================================================
RCS file: /cvsroot/opensdk/openSDK/Makefile,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- Makefile 17 Mar 2007 11:30:48 -0000 1.17
+++ Makefile 27 Jun 2007 15:11:53 -0000 1.18
@@ -2,6 +2,7 @@
TARGET=ERS7
CXX=g++
CXXFLAGS=-Wall -g -O2
+LDFLAGS=-Wl,--export-dynamic
HEADERS=-Isrc -Iloader -Iinclude -Iinclude/MCOOP -Iinclude/R4000 -D$(TARGET)
HEADERS+=-D_REENTRANT -D_THREAD_SAFE
@@ -18,7 +19,7 @@
all: $(LIB) OPENRloader
OPENRloader: $(OBJS) $(OBJS_LOADER)
- $(CXX) -rdynamic -ldl -lpthread -lz -o $@ $^
+ $(CXX) $(LDFLAGS) -ldl -lpthread -lz -o $@ $^
%.o:%.cc
$(CXX) $(CXXFLAGS) $(HEADERS) -c $<
Index: TECH_NOTES
===================================================================
RCS file: /cvsroot/opensdk/openSDK/TECH_NOTES,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- TECH_NOTES 29 Mar 2006 22:46:54 -0000 1.2
+++ TECH_NOTES 27 Jun 2007 15:11:53 -0000 1.3
@@ -25,11 +25,6 @@
To stop hit control-C. it will call the shutdown methods automatically.
-Messaging passing
-=================
-not implemented yet..
-
-
Problems
========
This program is rather complex and current linuxthreads implementation fails to
@@ -37,4 +32,9 @@
the high-performance linux Pthreads implementation (default since Glibc 2.4).
+More Information
+================
+More info may be available at: http://opensdk.sf.net/technotes.php
+
+
$Id$
|