Hello i downloaded openmsx 0.15 .I am trying to make a pkg file for a jail broken ps3.I have ming and msys installed and the required cell sdk.Inside the Ming i can install the sdk examples and make files for the ps3.
now i need help to setup the config for openmsx to be done for ppc.
Even though i have GCC and g++ installed plus all the required libraries this is the error i am getting
$ configure build/main.mk:26: Extraneous text after `else' directive Probing target system... Creating derived/x86_64-mingw-w64-opt/config/probed_defs.mk... Creating derived/x86_64-mingw-w64-opt/config/systemfuncs.hh... No working C++ compiler was found. Please install a C++ compiler, such as GCC's g++. If you have a C++ compiler installed and openMSX did not detect it, please set the environment variable CXX to the name of your C++ compiler. After you have corrected the situation, rerun "configure"."
why am i getting the derived/x86_64-mingw-w64-opt ?
The thing is in order to create executable for ps3 under the Ming i did follow the way they do it in the sdk
that is
1)i created a file called Makefile that has the following inside
# SCE CONFIDENTIAL # PLAYSTATION(R)3 Programmer Tool Runtime Library 192.001 # Copyright (C) 2006 Sony Computer Entertainment Inc. # All Rights Reserved. # CELL_MK_DIR := $(CELL_SDK)/samples/mk include $(CELL_MK_DIR)/sdk.makedef.mk MK_TARGET = msx.mk include $(CELL_MK_DIR)/sdk.target.mk
and another file that is msx.mk that has this code
# SCE CONFIDENTIAL # PLAYSTATION(R)3 Programmer Tool Runtime Library 192.001 # Copyright (C) 2006 Sony Computer Entertainment Inc. # All Rights Reserved. CELL_MK_DIR := $(CELL_SDK)/samples/mk include $(CELL_MK_DIR)/sdk.makedef.mk PPU_OPTIMIZE_LV := -O2 PPU_INCDIRS := -Iinclude -I../include PPU_CPPFLAGS := -DPSGL -D_DEBUG PPU_CXXSTDFLAGS += -fno-exceptions PPU_SRCS := src/main.cc PPU_TARGET := openmsx.elf PPU_LIBS := ../libfw.a PPU_LDLIBDIR := -L.. -L$(PPU_PSGL_LIBDIR) PPU_LDLIBS := -lPSGL -lPSGLU -lPSGLFX -lm \ -lresc_stub -lgcm_cmd -lgcm_sys_stub \ -lnet_stub -lio_stub -lsysutil_stub -lsysmodule_stub include $(CELL_MK_DIR)/sdk.target.mk
Even after this i still get that i do not have gcc or g++ which is not correct because i can compile other software for the ps3 with no problems.How can i configure the openmsx to get the correct gcc that i have installed?
I did also try the staticbindist it downloaded many missing libraries but again halted on the fact that i do not have the g++ or gcc.
hank you