(PS3) Fixed PS3 and Salamander PS3 builds

This commit is contained in:
Twinaphex 2012-03-17 00:58:44 +01:00
parent 13373f4873
commit 72efdbd916
3 changed files with 4 additions and 5 deletions

View File

@ -48,7 +48,7 @@ PPU_SRCS = fifo_buffer.c \
input/input_luts.c \
ps3/cellframework2/input/pad_input.c \
ps3/cellframework2/utility/oskutil.c \
compat/getopt.c \
compat/compat.c \
ssnes.c \
driver.c \
file.c \
@ -61,7 +61,6 @@ PPU_SRCS = fifo_buffer.c \
gfx/shader_cg.c \
gfx/snes_state.c \
patch.c \
compat/strl.c \
audio/hermite.c \
audio/rsound.c \
dynamic.c \

View File

@ -1,4 +1,4 @@
CELL_BUILD_TOOLS = SNC
CELL_BUILD_TOOLS = GCC
CELL_SDK ?= /usr/local/cell
CELL_GPU_TYPE = RSX
CELL_PSGL_VERSION = opt
@ -18,7 +18,7 @@ C = $(CELL_HOST_PATH)/ppu/bin/ppu-lv2-gcc
CC = $(CELL_HOST_PATH)/ppu/bin/ppu-lv2-g++
PPU_CFLAGS += -I. -O2 -g
PPU_SRCS = ps3/salamander/main.c strl.c conf/config_file.c
PPU_SRCS = ps3/salamander/main.c compat/compat.c conf/config_file.c
ifeq ($(HAVE_LOGGER), 1)
PPU_CFLAGS += -DHAVE_LOGGER

View File

@ -27,7 +27,7 @@
#include <stdlib.h>
#include <string.h>
#include "../../strl.h"
#include "../../compat/strl.h"
#include "../../conf/config_file.h"
#define PATH_MAX (512UL)