snes runs! sorta.

This commit is contained in:
nattthebear 2017-06-10 13:53:10 -04:00
parent 36be9e9fc7
commit f0ec682314
4 changed files with 4 additions and 4 deletions

BIN
output64/dll/libco.so Normal file

Binary file not shown.

View File

@ -31,11 +31,10 @@ all: $(TARGET)
.PHONY: clean all
$(TARGET).in : $(OBJS) $(AOBJS)
$(TARGET): $(OBJS) $(AOBJS)
$(CC) -o $@ $(LDFLAGS) $(CCFLAGS) $(OBJS) $(AOBJS)
$(TARGET): $(TARGET).in
strip $< -o $@ -R /4 -R /14 -R /29 -R /41 -R /55 -R /67 -R /78 -R /89 -R /104
mv $(TARGET) $(TARGET).in
strip $(TARGET).in -o $(TARGET) -R /4 -R /14 -R /29 -R /41 -R /55 -R /67 -R /78 -R /89 -R /104
clean:
rm -rf $(OBJ_DIR)

Binary file not shown.

View File

@ -12,6 +12,7 @@ CCFLAGS:= -DHOOKS -DBIZHAWK -DPROFILE_COMPATIBILITY -DGAMEBOY \
-Wno-parentheses -Wno-sign-compare \
-Wno-unused-variable -Wno-unused-function \
-fvisibility=hidden \
-fno-threadsafe-statics \
-std=c++0x \
-O0 -g