and here is my make file:../psp/bin/ld: cannot find -losl
collect2: ld returned 1 exit status
i dont know much about make/cygwin (or linux for that matter) but i'm assuming its a problem linking it because it cant find the appropriate library. any help would be appreciated. thanks. :)TARGET = test
OBJS = test.o
YOURLIBS=
INCDIR =
CFLAGS = -G4 -Wall -O2
CXXFLAGS = $(CFLAGS) -fno-exceptions -fno-rtti
ASFLAGS = $(CFLAGS)
LIBDIR =
LIBS=$(STDLIBS)$(YOURLIBS)
LDFLAGS =
STDLIBS= -losl -lpng -lz \
-lpspsdk -lpspctrl -lpspumd -lpsprtc -lpsppower -lpspgu -lpspaudiolib -lpspaudio -lm
EXTRA_TARGETS = EBOOT.PBP
PSP_EBOOT_TITLE = OSL Sample
PSPSDK=$(shell psp-config --pspsdk-path)
include $(PSPSDK)/lib/build.mak
ps, i would have searched google on this but there is no info on there for oslib yet (too new and noone's using it yet?), and im not even sure what the problem is in regards to the "-losl" error message so dunno what to search for. thanks again.