mirror of
https://github.com/wiiu-env/WiiUPluginSystem.git
synced 2024-12-24 17:11:58 +01:00
[Plugins] Updated the Makefile. C++ and stdlib should work now.
- Using a different base for the makefile, which provides some more function - Linking with stdlib should work now - C++ _should_ work. not really tested yet. [Example Plugin] Updated example plugin to log all FSOpen actions.
This commit is contained in:
parent
db29f7a302
commit
d181e445c7
1
.gitignore
vendored
1
.gitignore
vendored
@ -9,3 +9,4 @@ plugins/*/build/*
|
|||||||
loader/WiiUPluginLoader.cscope_file_list
|
loader/WiiUPluginLoader.cscope_file_list
|
||||||
loader/WiiUPluginLoader.layout
|
loader/WiiUPluginLoader.layout
|
||||||
|
|
||||||
|
*.mod
|
||||||
|
@ -1,142 +1,173 @@
|
|||||||
###############################################################################
|
DO_LOGGING := 1
|
||||||
# Makefile
|
|
||||||
# by Alex Chadwick
|
|
||||||
#
|
|
||||||
# A makefile script for generation of a brainslug module
|
|
||||||
###############################################################################
|
|
||||||
# Hopefully you shouldn't need to change anything in this file.
|
|
||||||
# Alter makefile.mk to change common settings.
|
|
||||||
|
|
||||||
###############################################################################
|
#---------------------------------------------------------------------------------
|
||||||
# devkitpro settings
|
# Clear the implicit built in rules
|
||||||
ifeq ($(strip $(DEVKITPRO)),)
|
#---------------------------------------------------------------------------------
|
||||||
$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to>devkitPro")
|
.SUFFIXES:
|
||||||
endif
|
#---------------------------------------------------------------------------------
|
||||||
ifeq ($(strip $(DEVKITPPC)),)
|
ifeq ($(strip $(DEVKITPPC)),)
|
||||||
$(error "Please set DEVKITPPC in your environment. export DEVKITPPC=<path to>devkitPPC")
|
$(error "Please set DEVKITPPC in your environment. export DEVKITPPC=<path to>devkitPPC")
|
||||||
endif
|
endif
|
||||||
|
ifeq ($(strip $(DEVKITPRO)),)
|
||||||
|
$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to>devkitPRO")
|
||||||
|
endif
|
||||||
|
export PATH := $(DEVKITPPC)/bin:$(PORTLIBS)/bin:$(PATH)
|
||||||
|
export PORTLIBS := $(DEVKITPRO)/portlibs/ppc
|
||||||
|
export WUPSDIR := $(DEVKITPRO)/wups
|
||||||
|
export GCC_VER := $(shell $(DEVKITPPC)/bin/powerpc-eabi-gcc -dumpversion)
|
||||||
|
|
||||||
WUPSDIR := $(DEVKITPRO)/wups
|
PREFIX := powerpc-eabi-
|
||||||
GCC_VER := $(shell $(DEVKITPPC)/bin/powerpc-eabi-gcc -dumpversion)
|
|
||||||
PORTLIBS := $(DEVKITPRO)/portlibs/ppc
|
|
||||||
|
|
||||||
PATH := $(DEVKITPPC)/bin:$(PATH)
|
export AS := $(PREFIX)as
|
||||||
LIB_INC_DIRS := $(DEVKITPPC)/lib/gcc/powerpc-eabi/$(GCC_VER)/include \
|
export CC := $(PREFIX)gcc
|
||||||
$(DEVKITPPC)/lib/gcc/powerpc-eabi/$(GCC_VER)/include-fixed \
|
export CXX := $(PREFIX)g++
|
||||||
$(DEVKITPPC)/powerpc-eabi/include \
|
export REAL_LD := $(PREFIX)ld
|
||||||
$(PORTLIBS)/include \
|
export AR := $(PREFIX)ar
|
||||||
$(PORTLIBS)/include/libutils \
|
export OBJCOPY := $(PREFIX)objcopy
|
||||||
$(WUPSDIR)/include
|
|
||||||
|
|
||||||
include makefile.mk
|
|
||||||
|
|
||||||
LIB_DIRS += $(DEVKITPPC)/lib/gcc/powerpc-eabi/$(GCC_VER) \
|
#---------------------------------------------------------------------------------
|
||||||
$(DEVKITPPC)/powerpc-eabi/ \
|
# TARGET is the name of the output
|
||||||
$(PORTLIBS)/lib
|
# BUILD is the directory where object files & intermediate files will be placed
|
||||||
LIBS += c dynamiclibs utils
|
# SOURCES is a list of directories containing source code
|
||||||
###############################################################################
|
# INCLUDES is a list of directories containing extra header files
|
||||||
# Parameters
|
#---------------------------------------------------------------------------------
|
||||||
|
TARGET := $(BIN)/$(notdir $(CURDIR)).mod
|
||||||
|
BUILD := build
|
||||||
|
BUILD_DBG := $(TARGET)_dbg
|
||||||
|
SOURCES := src
|
||||||
|
|
||||||
|
DATA :=
|
||||||
|
|
||||||
|
INCLUDES := src
|
||||||
|
|
||||||
# A comma to make writing commands easier
|
|
||||||
C := ,
|
|
||||||
# Used to suppress command echo.
|
|
||||||
Q ?= @
|
|
||||||
LOG ?= @echo $@
|
|
||||||
# The intermediate directory for compiled object files.
|
|
||||||
BUILD ?= build
|
|
||||||
# The name of the assembler listing file to generate.
|
# The name of the assembler listing file to generate.
|
||||||
LIST ?= $(TARGET:.mod=.list)
|
LIST ?= $(TARGET:.mod=.list)
|
||||||
# The name of the map file to generate.
|
# The name of the map file to generate.
|
||||||
MAP ?= $(TARGET:.mod=.map)
|
MAP ?= $(TARGET:.mod=.map)
|
||||||
|
|
||||||
INC_DIRS += $(LIB_INC_DIRS)
|
|
||||||
|
|
||||||
###############################################################################
|
#---------------------------------------------------------------------------------
|
||||||
# Compiler settings
|
# options for code generation
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
# The toolchain to use.
|
CFLAGS += -shared -fPIC -Os -Wall -x c -std=c11 -DGEKKO_U -D__wiiu__ -mrvl -mcpu=750 -meabi -mhard-float -fshort-wchar -fno-common -msdata=none -memb -ffunction-sections -fdata-sections
|
||||||
PREFIX ?= powerpc-eabi-
|
CXXFLAGS += -shared -fPIC -Os -Wall -x c -std=gnu++11 -DGEKKO_U -D__wiiu__ -mrvl -mcpu=750 -meabi -mhard-float -fshort-wchar -fno-common -msdata=none -memb -ffunction-sections -fdata-sections
|
||||||
# Tools to use
|
|
||||||
AS := $(PREFIX)as
|
|
||||||
LD := $(PREFIX)ld
|
|
||||||
CC := $(PREFIX)g++
|
|
||||||
OBJDUMP := $(PREFIX)objdump
|
|
||||||
|
|
||||||
|
ifeq ($(DO_LOGGING), 1)
|
||||||
|
CFLAGS += -D__LOGGING__
|
||||||
|
CXXFLAGS += -D__LOGGING__
|
||||||
|
endif
|
||||||
|
|
||||||
|
ASFLAGS := -mregnames
|
||||||
# --relocatable: make sure ld doesn't remove relocations wups will need
|
# --relocatable: make sure ld doesn't remove relocations wups will need
|
||||||
# -s: strip local symbols to speed linking
|
# -s: strip local symbols to speed linking
|
||||||
# --gc-sections: remove unneeded symbols
|
# --gc-sections: remove unneeded symbols
|
||||||
# -T: use the linker script specified (to force certain wups sections together)
|
# -T: use the linker script specified (to force certain wups sections together)
|
||||||
# -Map: generate a map file
|
# -Map: generate a map file
|
||||||
LDFLAGS += --relocatable -s --gc-sections -u wups_load -u wups_meta -u wups_hooks \
|
LDFLAGS += -u wups_load -u wups_meta -u wups_hooks -T $(WUPSDIR)/wups.ld \
|
||||||
-T $(WUPSDIR)/wups.ld \
|
-Wl,-Map,$(notdir $@).map,-wrap,malloc,-wrap,free,-wrap,memalign,-wrap,calloc,-wrap,realloc,-wrap,malloc_usable_size,-wrap,_malloc_r,-wrap,_free_r,-wrap,_realloc_r,-wrap,_calloc_r,-wrap,_memalign_r,-wrap,_malloc_usable_size_r,--relocatable,--gc-sections
|
||||||
$(patsubst %,-Map %,$(strip $(MAP))) -wrap malloc -wrap free -wrap memalign -wrap calloc -wrap realloc -wrap malloc_usable_size -wrap _malloc_r -wrap _free_r -wrap _realloc_r -wrap _calloc_r -wrap _memalign_r -wrap _malloc_usable_size_r
|
LD1FLAGS += --relocatable -s -T $(WUPSDIR)/wups_elf.ld
|
||||||
LD1FLAGS += --relocatable -s \
|
#---------------------------------------------------------------------------------
|
||||||
-T $(WUPSDIR)/wups_elf.ld -wrap malloc -wrap free -wrap memalign -wrap calloc -wrap realloc -wrap malloc_usable_size -wrap _malloc_r -wrap _free_r -wrap _realloc_r -wrap _calloc_r -wrap _memalign_r -wrap _malloc_usable_size_r
|
Q := @
|
||||||
|
MAKEFLAGS += --no-print-directory
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# any extra libraries we wish to link with the project
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
LIBS := -lutils -ldynamiclibs
|
||||||
|
#
|
||||||
|
|
||||||
# -O2: optimise lots
|
#---------------------------------------------------------------------------------
|
||||||
# -Wall: generate lots of warnings
|
# list of directories containing libraries, this must be the top level containing
|
||||||
# -x c: compile as C code
|
# include and lib
|
||||||
# -std=gnu11: use the C11 standard with GNU extensions
|
#---------------------------------------------------------------------------------
|
||||||
# -nostdinc: don't include standard headers (we don't have all the symbols)
|
LIBDIRS := $(DEVKITPPC)
|
||||||
# -ffreestanding: we don't have libc; don't expect we do
|
|
||||||
# -DGEKKO: define the symbol GEKKO (used in some libogc headers)
|
|
||||||
# -DHW_RVL: define the symbol HW_RVL (used in some libogc headers)
|
|
||||||
# -D__wii__: define the symbol __wii__ (used in some libogc headers)
|
|
||||||
# -mrvl: enable wii/gamecube compilation
|
|
||||||
# -mcpu=750: enable processor specific compilation
|
|
||||||
# -meabi: enable eabi specific compilation
|
|
||||||
# -mhard-float: enable hardware floating point instructions
|
|
||||||
# -fshort-wchar: use 16 bit whcar_t type in keeping with Wii executables
|
|
||||||
# -fno-common: stop common variables which the loader can't understand
|
|
||||||
# -msdata-none: do not use r2 or r13 as small data areas
|
|
||||||
# -memb: enable embedded application specific compilation
|
|
||||||
# -ffunction-sections: split up functions so linker can garbage collect
|
|
||||||
# -fdata-sections: split up data so linker can garbage collect
|
|
||||||
CFLAGS += -shared -fPIC -O0 -Wall -x c -std=c11 -DGEKKO_U -D__wiiu__ -mrvl -mcpu=750 -meabi -mhard-float -fshort-wchar -fno-common -msdata=none -memb -ffunction-sections -fdata-sections
|
|
||||||
|
|
||||||
CFLAGS += -D__LOGGING__
|
#---------------------------------------------------------------------------------
|
||||||
|
# no real need to edit anything past this point unless you need to add additional
|
||||||
|
# rules for different file extensions
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
ifneq ($(BUILD),$(notdir $(CURDIR)))
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
export PROJECTDIR := $(CURDIR)
|
||||||
|
export OUTPUT := $(CURDIR)/$(TARGETDIR)/$(TARGET)
|
||||||
|
export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) \
|
||||||
|
$(foreach dir,$(DATA),$(CURDIR)/$(dir))
|
||||||
|
export DEPSDIR := $(CURDIR)/$(BUILD)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# automatically build a list of object files for our project
|
||||||
ifdef DEBUG
|
#---------------------------------------------------------------------------------
|
||||||
|
CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c)))
|
||||||
|
CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp)))
|
||||||
|
sFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s)))
|
||||||
|
SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.S)))
|
||||||
|
BINFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.*)))
|
||||||
|
TTFFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.ttf)))
|
||||||
|
PNGFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.png)))
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# use CXX for linking C++ projects, CC for standard C
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
ifeq ($(strip $(CPPFILES)),)
|
||||||
|
export LD := $(CC)
|
||||||
else
|
else
|
||||||
CFLAGS += -DNDEBUG
|
export LD := $(CXX)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
###############################################################################
|
export OFILES := $(CPPFILES:.cpp=.o) $(CFILES:.c=.o) \
|
||||||
# Variable init
|
$(sFILES:.s=.o) $(SFILES:.S=.o) \
|
||||||
|
$(PNGFILES:.png=.png.o) $(addsuffix .o,$(BINFILES))
|
||||||
|
|
||||||
# Phony targets
|
#---------------------------------------------------------------------------------
|
||||||
PHONY :=
|
# build a list of include paths
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) \
|
||||||
|
$(foreach dir,$(LIBDIRS),-I$(dir)/include) \
|
||||||
|
-I$(CURDIR)/$(BUILD) -I$(PORTLIBS)/include \
|
||||||
|
-I$(PORTLIBS)/include/libutils -I$(WUPSDIR)/include
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# build a list of library paths
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib) \
|
||||||
|
-L$(PORTLIBS)/lib
|
||||||
|
|
||||||
|
export OUTPUT := $(CURDIR)/$(TARGET)
|
||||||
|
.PHONY: $(BUILD) clean install
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
$(BUILD):
|
||||||
|
@[ -d $@ ] || mkdir -p $@
|
||||||
|
@$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
clean:
|
||||||
|
@echo clean ...
|
||||||
|
@rm -fr $(BUILD) $(OUTPUT).elf $(OUTPUT).bin $(BUILD_DBG).elf $(OUTPUT)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
else
|
||||||
|
|
||||||
|
DEPENDS := $(OFILES:.o=.d)
|
||||||
|
|
||||||
|
THIS_DIR := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Rule to make everything.
|
# Rule to make everything.
|
||||||
PHONY += all
|
PHONY += all
|
||||||
|
|
||||||
all : $(TARGET)
|
all : $(OUTPUT)
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
# Derived rules
|
|
||||||
|
|
||||||
LDFLAGS += $(patsubst %,-l %,$(LIBS)) $(patsubst %,-l %,$(LIBS)) \
|
|
||||||
$(patsubst %,-L %,$(LIB_DIRS)) $(patsubst %,-L %/lib,$(LIB_DIRS))
|
|
||||||
CFLAGS += $(patsubst %,-I %,$(INC_DIRS)) \
|
|
||||||
$(patsubst %,-I %/include,$(LIB_DIRS)) -iquote src
|
|
||||||
|
|
||||||
OBJECTS := $(patsubst %.c,$(BUILD)/%.c.o,$(filter %.c,$(SRC)))
|
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Special build rules
|
# Special build rules
|
||||||
|
|
||||||
# Rule to make the module file.
|
# Rule to make the module file.
|
||||||
$(TARGET) : $(BUILD)/output.elf | $(BIN)
|
$(OUTPUT) : output.elf | $(BIN)
|
||||||
$(LOG)
|
$(LOG)
|
||||||
$Q$(LD) $(BUILD)/output.elf $(LDFLAGS) -o $@
|
$(LD) $(THIS_DIR)/$(BUILD)/output.elf $(LDFLAGS) $(LIBS) $(LIBPATHS) -o $@
|
||||||
|
|
||||||
# Rule to make the module file.
|
# Rule to make the module file.
|
||||||
$(BUILD)/output.elf : $(OBJECTS) | $(BIN) $(BUILD)
|
output.elf : $(OFILES) | $(BIN) $(BUILD)
|
||||||
$(LOG)
|
$(LOG)
|
||||||
$Q$(LD) $(OBJECTS) $(LD1FLAGS) -o $@
|
$(REAL_LD) $(OFILES) $(LD1FLAGS) $(LIBS) $(LIBPATHS) -o $@
|
||||||
|
|
||||||
# Rule to make intermediate directory
|
# Rule to make intermediate directory
|
||||||
$(BUILD) :
|
$(BUILD) :
|
||||||
@ -145,14 +176,65 @@ $(BUILD) :
|
|||||||
# Rule to make output directory
|
# Rule to make output directory
|
||||||
$(BIN) :
|
$(BIN) :
|
||||||
$Qmkdir $@
|
$Qmkdir $@
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Standard build rules
|
# Standard build rules
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.a:
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
@echo $(notdir $@)
|
||||||
|
@rm -f $@
|
||||||
|
@$(AR) -rc $@ $^
|
||||||
|
|
||||||
$(BUILD)/%.c.o: %.c | $(BUILD)
|
#---------------------------------------------------------------------------------
|
||||||
$(LOG)
|
%.o: %.cpp
|
||||||
-$Qmkdir -p $(dir $@)
|
@echo $(notdir $<)
|
||||||
$Q$(CC) -c $(CFLAGS) $< -o $@
|
@$(CXX) -MMD -MP -MF $(DEPSDIR)/$*.d $(CXXFLAGS) $(INCLUDE) -c $< -o $@ $(ERROR_FILTER)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.o: %.c
|
||||||
|
@echo $(notdir $<)
|
||||||
|
$(CC) -MMD -MP -MF $(DEPSDIR)/$*.d $(CFLAGS) $(INCLUDE) -c $< -o $@ $(ERROR_FILTER)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.o: %.S
|
||||||
|
@echo $(notdir $<)
|
||||||
|
$(CC) -MMD -MP -MF $(DEPSDIR)/$*.d -x assembler-with-cpp $(ASFLAGS) -c $< -o $@ $(ERROR_FILTER)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.png.o : %.png
|
||||||
|
@echo $(notdir $<)
|
||||||
|
@bin2s -a 32 $< | $(AS) -o $(@)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.jpg.o : %.jpg
|
||||||
|
@echo $(notdir $<)
|
||||||
|
@bin2s -a 32 $< | $(AS) -o $(@)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.ttf.o : %.ttf
|
||||||
|
@echo $(notdir $<)
|
||||||
|
@bin2s -a 32 $< | $(AS) -o $(@)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.bin.o : %.bin
|
||||||
|
@echo $(notdir $<)
|
||||||
|
@bin2s -a 32 $< | $(AS) -o $(@)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.wav.o : %.wav
|
||||||
|
@echo $(notdir $<)
|
||||||
|
@bin2s -a 32 $< | $(AS) -o $(@)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.mp3.o : %.mp3
|
||||||
|
@echo $(notdir $<)
|
||||||
|
@bin2s -a 32 $< | $(AS) -o $(@)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.ogg.o : %.ogg
|
||||||
|
@echo $(notdir $<)
|
||||||
|
@bin2s -a 32 $< | $(AS) -o $(@)
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Assembly listing rules
|
# Assembly listing rules
|
||||||
@ -179,3 +261,9 @@ clean :
|
|||||||
# Phony targets
|
# Phony targets
|
||||||
|
|
||||||
.PHONY : $(PHONY)
|
.PHONY : $(PHONY)
|
||||||
|
|
||||||
|
-include $(DEPENDS)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
endif
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
@ -1,18 +0,0 @@
|
|||||||
###############################################################################
|
|
||||||
# Source files
|
|
||||||
|
|
||||||
# The source files to compile.
|
|
||||||
SRC := src/main.c
|
|
||||||
|
|
||||||
# Include directories
|
|
||||||
INC_DIRS := src
|
|
||||||
# Library directories
|
|
||||||
LIB_DIRS :=
|
|
||||||
# The names of libraries to use.
|
|
||||||
LIBS :=
|
|
||||||
# The output directory for compiled results.
|
|
||||||
BIN := bin
|
|
||||||
# The name of the output file to generate.
|
|
||||||
TARGET := $(BIN)/$(notdir $(CURDIR)).mod
|
|
||||||
# C compiler flags
|
|
||||||
CFLAGS :=
|
|
@ -3,6 +3,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "dynamic_libs/os_functions.h"
|
#include "dynamic_libs/os_functions.h"
|
||||||
#include "dynamic_libs/socket_functions.h"
|
#include "dynamic_libs/socket_functions.h"
|
||||||
|
#include "dynamic_libs/fs_functions.h"
|
||||||
#include "utils/logger.h"
|
#include "utils/logger.h"
|
||||||
|
|
||||||
WUPS_MODULE_NAME("test module");
|
WUPS_MODULE_NAME("test module");
|
||||||
@ -18,10 +19,12 @@ INITIALIZE(){
|
|||||||
|
|
||||||
log_print("Init of example_plugin!\n");
|
log_print("Init of example_plugin!\n");
|
||||||
}
|
}
|
||||||
DECL_FUNCTION(int,FSInit,void){
|
|
||||||
log_print("FSInit called\n");
|
DECL_FUNCTION(int, FSOpenFile, FSClient *pClient, FSCmdBlock *pCmd, const char *path, const char *mode, int *handle, int error) {
|
||||||
return real_FSInit();
|
int result = real_FSOpenFile(pClient, pCmd, path, mode, handle, error);
|
||||||
|
|
||||||
|
log_printf("FSOpenFile called for folder %s! Result %d\n",path,result);
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
WUPS_MUST_REPLACE(FSOpenFile,WUPS_LOADER_LIBRARY_COREINIT, FSOpenFile);
|
||||||
WUPS_MUST_REPLACE(FSInit,WUPS_LOADER_LIBRARY_COREINIT, FSInit);
|
|
@ -1,142 +1,173 @@
|
|||||||
###############################################################################
|
DO_LOGGING := 1
|
||||||
# Makefile
|
|
||||||
# by Alex Chadwick
|
|
||||||
#
|
|
||||||
# A makefile script for generation of a brainslug module
|
|
||||||
###############################################################################
|
|
||||||
# Hopefully you shouldn't need to change anything in this file.
|
|
||||||
# Alter makefile.mk to change common settings.
|
|
||||||
|
|
||||||
###############################################################################
|
#---------------------------------------------------------------------------------
|
||||||
# devkitpro settings
|
# Clear the implicit built in rules
|
||||||
ifeq ($(strip $(DEVKITPRO)),)
|
#---------------------------------------------------------------------------------
|
||||||
$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to>devkitPro")
|
.SUFFIXES:
|
||||||
endif
|
#---------------------------------------------------------------------------------
|
||||||
ifeq ($(strip $(DEVKITPPC)),)
|
ifeq ($(strip $(DEVKITPPC)),)
|
||||||
$(error "Please set DEVKITPPC in your environment. export DEVKITPPC=<path to>devkitPPC")
|
$(error "Please set DEVKITPPC in your environment. export DEVKITPPC=<path to>devkitPPC")
|
||||||
endif
|
endif
|
||||||
|
ifeq ($(strip $(DEVKITPRO)),)
|
||||||
|
$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to>devkitPRO")
|
||||||
|
endif
|
||||||
|
export PATH := $(DEVKITPPC)/bin:$(PORTLIBS)/bin:$(PATH)
|
||||||
|
export PORTLIBS := $(DEVKITPRO)/portlibs/ppc
|
||||||
|
export WUPSDIR := $(DEVKITPRO)/wups
|
||||||
|
export GCC_VER := $(shell $(DEVKITPPC)/bin/powerpc-eabi-gcc -dumpversion)
|
||||||
|
|
||||||
WUPSDIR := $(DEVKITPRO)/wups
|
PREFIX := powerpc-eabi-
|
||||||
GCC_VER := $(shell $(DEVKITPPC)/bin/powerpc-eabi-gcc -dumpversion)
|
|
||||||
PORTLIBS := $(DEVKITPRO)/portlibs/ppc
|
|
||||||
|
|
||||||
PATH := $(DEVKITPPC)/bin:$(PATH)
|
export AS := $(PREFIX)as
|
||||||
LIB_INC_DIRS := $(DEVKITPPC)/lib/gcc/powerpc-eabi/$(GCC_VER)/include \
|
export CC := $(PREFIX)gcc
|
||||||
$(DEVKITPPC)/lib/gcc/powerpc-eabi/$(GCC_VER)/include-fixed \
|
export CXX := $(PREFIX)g++
|
||||||
$(DEVKITPPC)/powerpc-eabi/include \
|
export REAL_LD := $(PREFIX)ld
|
||||||
$(PORTLIBS)/include \
|
export AR := $(PREFIX)ar
|
||||||
$(PORTLIBS)/include/libutils \
|
export OBJCOPY := $(PREFIX)objcopy
|
||||||
$(WUPSDIR)/include
|
|
||||||
|
|
||||||
include makefile.mk
|
|
||||||
|
|
||||||
LIB_DIRS += $(DEVKITPPC)/lib/gcc/powerpc-eabi/$(GCC_VER) \
|
#---------------------------------------------------------------------------------
|
||||||
$(DEVKITPPC)/powerpc-eabi/ \
|
# TARGET is the name of the output
|
||||||
$(PORTLIBS)/lib
|
# BUILD is the directory where object files & intermediate files will be placed
|
||||||
LIBS += c dynamiclibs utils
|
# SOURCES is a list of directories containing source code
|
||||||
###############################################################################
|
# INCLUDES is a list of directories containing extra header files
|
||||||
# Parameters
|
#---------------------------------------------------------------------------------
|
||||||
|
TARGET := $(BIN)/$(notdir $(CURDIR)).mod
|
||||||
|
BUILD := build
|
||||||
|
BUILD_DBG := $(TARGET)_dbg
|
||||||
|
SOURCES := src
|
||||||
|
|
||||||
|
DATA :=
|
||||||
|
|
||||||
|
INCLUDES := src
|
||||||
|
|
||||||
# A comma to make writing commands easier
|
|
||||||
C := ,
|
|
||||||
# Used to suppress command echo.
|
|
||||||
Q ?= @
|
|
||||||
LOG ?= @echo $@
|
|
||||||
# The intermediate directory for compiled object files.
|
|
||||||
BUILD ?= build
|
|
||||||
# The name of the assembler listing file to generate.
|
# The name of the assembler listing file to generate.
|
||||||
LIST ?= $(TARGET:.mod=.list)
|
LIST ?= $(TARGET:.mod=.list)
|
||||||
# The name of the map file to generate.
|
# The name of the map file to generate.
|
||||||
MAP ?= $(TARGET:.mod=.map)
|
MAP ?= $(TARGET:.mod=.map)
|
||||||
|
|
||||||
INC_DIRS += $(LIB_INC_DIRS)
|
|
||||||
|
|
||||||
###############################################################################
|
#---------------------------------------------------------------------------------
|
||||||
# Compiler settings
|
# options for code generation
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
# The toolchain to use.
|
CFLAGS += -shared -fPIC -Os -Wall -x c -std=c11 -DGEKKO_U -D__wiiu__ -mrvl -mcpu=750 -meabi -mhard-float -fshort-wchar -fno-common -msdata=none -memb -ffunction-sections -fdata-sections
|
||||||
PREFIX ?= powerpc-eabi-
|
CXXFLAGS += -shared -fPIC -Os -Wall -x c -std=gnu++11 -DGEKKO_U -D__wiiu__ -mrvl -mcpu=750 -meabi -mhard-float -fshort-wchar -fno-common -msdata=none -memb -ffunction-sections -fdata-sections
|
||||||
# Tools to use
|
|
||||||
AS := $(PREFIX)as
|
|
||||||
LD := $(PREFIX)ld
|
|
||||||
CC := $(PREFIX)g++
|
|
||||||
OBJDUMP := $(PREFIX)objdump
|
|
||||||
|
|
||||||
|
ifeq ($(DO_LOGGING), 1)
|
||||||
|
CFLAGS += -D__LOGGING__
|
||||||
|
CXXFLAGS += -D__LOGGING__
|
||||||
|
endif
|
||||||
|
|
||||||
|
ASFLAGS := -mregnames
|
||||||
# --relocatable: make sure ld doesn't remove relocations wups will need
|
# --relocatable: make sure ld doesn't remove relocations wups will need
|
||||||
# -s: strip local symbols to speed linking
|
# -s: strip local symbols to speed linking
|
||||||
# --gc-sections: remove unneeded symbols
|
# --gc-sections: remove unneeded symbols
|
||||||
# -T: use the linker script specified (to force certain wups sections together)
|
# -T: use the linker script specified (to force certain wups sections together)
|
||||||
# -Map: generate a map file
|
# -Map: generate a map file
|
||||||
LDFLAGS += --relocatable -s --gc-sections -u wups_load -u wups_meta -u wups_hooks \
|
LDFLAGS += -u wups_load -u wups_meta -u wups_hooks -T $(WUPSDIR)/wups.ld \
|
||||||
-T $(WUPSDIR)/wups.ld \
|
-Wl,-Map,$(notdir $@).map,-wrap,malloc,-wrap,free,-wrap,memalign,-wrap,calloc,-wrap,realloc,-wrap,malloc_usable_size,-wrap,_malloc_r,-wrap,_free_r,-wrap,_realloc_r,-wrap,_calloc_r,-wrap,_memalign_r,-wrap,_malloc_usable_size_r,--relocatable,--gc-sections
|
||||||
$(patsubst %,-Map %,$(strip $(MAP))) -wrap malloc -wrap free -wrap memalign -wrap calloc -wrap realloc -wrap malloc_usable_size -wrap _malloc_r -wrap _free_r -wrap _realloc_r -wrap _calloc_r -wrap _memalign_r -wrap _malloc_usable_size_r
|
LD1FLAGS += --relocatable -s -T $(WUPSDIR)/wups_elf.ld
|
||||||
LD1FLAGS += --relocatable -s \
|
#---------------------------------------------------------------------------------
|
||||||
-T $(WUPSDIR)/wups_elf.ld -wrap malloc -wrap free -wrap memalign -wrap calloc -wrap realloc -wrap malloc_usable_size -wrap _malloc_r -wrap _free_r -wrap _realloc_r -wrap _calloc_r -wrap _memalign_r -wrap _malloc_usable_size_r
|
Q := @
|
||||||
|
MAKEFLAGS += --no-print-directory
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# any extra libraries we wish to link with the project
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
LIBS := -lutils -ldynamiclibs
|
||||||
|
#
|
||||||
|
|
||||||
# -O2: optimise lots
|
#---------------------------------------------------------------------------------
|
||||||
# -Wall: generate lots of warnings
|
# list of directories containing libraries, this must be the top level containing
|
||||||
# -x c: compile as C code
|
# include and lib
|
||||||
# -std=gnu11: use the C11 standard with GNU extensions
|
#---------------------------------------------------------------------------------
|
||||||
# -nostdinc: don't include standard headers (we don't have all the symbols)
|
LIBDIRS := $(DEVKITPPC)
|
||||||
# -ffreestanding: we don't have libc; don't expect we do
|
|
||||||
# -DGEKKO: define the symbol GEKKO (used in some libogc headers)
|
|
||||||
# -DHW_RVL: define the symbol HW_RVL (used in some libogc headers)
|
|
||||||
# -D__wii__: define the symbol __wii__ (used in some libogc headers)
|
|
||||||
# -mrvl: enable wii/gamecube compilation
|
|
||||||
# -mcpu=750: enable processor specific compilation
|
|
||||||
# -meabi: enable eabi specific compilation
|
|
||||||
# -mhard-float: enable hardware floating point instructions
|
|
||||||
# -fshort-wchar: use 16 bit whcar_t type in keeping with Wii executables
|
|
||||||
# -fno-common: stop common variables which the loader can't understand
|
|
||||||
# -msdata-none: do not use r2 or r13 as small data areas
|
|
||||||
# -memb: enable embedded application specific compilation
|
|
||||||
# -ffunction-sections: split up functions so linker can garbage collect
|
|
||||||
# -fdata-sections: split up data so linker can garbage collect
|
|
||||||
CFLAGS += -shared -fPIC -O0 -Wall -x c -std=c11 -DGEKKO_U -D__wiiu__ -mrvl -mcpu=750 -meabi -mhard-float -fshort-wchar -fno-common -msdata=none -memb -ffunction-sections -fdata-sections
|
|
||||||
|
|
||||||
CFLAGS += -D__LOGGING__
|
#---------------------------------------------------------------------------------
|
||||||
|
# no real need to edit anything past this point unless you need to add additional
|
||||||
|
# rules for different file extensions
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
ifneq ($(BUILD),$(notdir $(CURDIR)))
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
export PROJECTDIR := $(CURDIR)
|
||||||
|
export OUTPUT := $(CURDIR)/$(TARGETDIR)/$(TARGET)
|
||||||
|
export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) \
|
||||||
|
$(foreach dir,$(DATA),$(CURDIR)/$(dir))
|
||||||
|
export DEPSDIR := $(CURDIR)/$(BUILD)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# automatically build a list of object files for our project
|
||||||
ifdef DEBUG
|
#---------------------------------------------------------------------------------
|
||||||
|
CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c)))
|
||||||
|
CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp)))
|
||||||
|
sFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s)))
|
||||||
|
SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.S)))
|
||||||
|
BINFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.*)))
|
||||||
|
TTFFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.ttf)))
|
||||||
|
PNGFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.png)))
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# use CXX for linking C++ projects, CC for standard C
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
ifeq ($(strip $(CPPFILES)),)
|
||||||
|
export LD := $(CC)
|
||||||
else
|
else
|
||||||
CFLAGS += -DNDEBUG
|
export LD := $(CXX)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
###############################################################################
|
export OFILES := $(CPPFILES:.cpp=.o) $(CFILES:.c=.o) \
|
||||||
# Variable init
|
$(sFILES:.s=.o) $(SFILES:.S=.o) \
|
||||||
|
$(PNGFILES:.png=.png.o) $(addsuffix .o,$(BINFILES))
|
||||||
|
|
||||||
# Phony targets
|
#---------------------------------------------------------------------------------
|
||||||
PHONY :=
|
# build a list of include paths
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) \
|
||||||
|
$(foreach dir,$(LIBDIRS),-I$(dir)/include) \
|
||||||
|
-I$(CURDIR)/$(BUILD) -I$(PORTLIBS)/include \
|
||||||
|
-I$(PORTLIBS)/include/libutils -I$(WUPSDIR)/include
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# build a list of library paths
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib) \
|
||||||
|
-L$(PORTLIBS)/lib
|
||||||
|
|
||||||
|
export OUTPUT := $(CURDIR)/$(TARGET)
|
||||||
|
.PHONY: $(BUILD) clean install
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
$(BUILD):
|
||||||
|
@[ -d $@ ] || mkdir -p $@
|
||||||
|
@$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
clean:
|
||||||
|
@echo clean ...
|
||||||
|
@rm -fr $(BUILD) $(OUTPUT).elf $(OUTPUT).bin $(BUILD_DBG).elf $(OUTPUT)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
else
|
||||||
|
|
||||||
|
DEPENDS := $(OFILES:.o=.d)
|
||||||
|
|
||||||
|
THIS_DIR := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Rule to make everything.
|
# Rule to make everything.
|
||||||
PHONY += all
|
PHONY += all
|
||||||
|
|
||||||
all : $(TARGET)
|
all : $(OUTPUT)
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
# Derived rules
|
|
||||||
|
|
||||||
LDFLAGS += $(patsubst %,-l %,$(LIBS)) $(patsubst %,-l %,$(LIBS)) \
|
|
||||||
$(patsubst %,-L %,$(LIB_DIRS)) $(patsubst %,-L %/lib,$(LIB_DIRS))
|
|
||||||
CFLAGS += $(patsubst %,-I %,$(INC_DIRS)) \
|
|
||||||
$(patsubst %,-I %/include,$(LIB_DIRS)) -iquote src
|
|
||||||
|
|
||||||
OBJECTS := $(patsubst %.c,$(BUILD)/%.c.o,$(filter %.c,$(SRC)))
|
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Special build rules
|
# Special build rules
|
||||||
|
|
||||||
# Rule to make the module file.
|
# Rule to make the module file.
|
||||||
$(TARGET) : $(BUILD)/output.elf | $(BIN)
|
$(OUTPUT) : output.elf | $(BIN)
|
||||||
$(LOG)
|
$(LOG)
|
||||||
$Q$(LD) $(BUILD)/output.elf $(LDFLAGS) -o $@
|
$(LD) $(THIS_DIR)/$(BUILD)/output.elf $(LDFLAGS) $(LIBS) $(LIBPATHS) -o $@
|
||||||
|
|
||||||
# Rule to make the module file.
|
# Rule to make the module file.
|
||||||
$(BUILD)/output.elf : $(OBJECTS) | $(BIN) $(BUILD)
|
output.elf : $(OFILES) | $(BIN) $(BUILD)
|
||||||
$(LOG)
|
$(LOG)
|
||||||
$Q$(LD) $(OBJECTS) $(LD1FLAGS) -o $@
|
$(REAL_LD) $(OFILES) $(LD1FLAGS) $(LIBS) $(LIBPATHS) -o $@
|
||||||
|
|
||||||
# Rule to make intermediate directory
|
# Rule to make intermediate directory
|
||||||
$(BUILD) :
|
$(BUILD) :
|
||||||
@ -145,14 +176,65 @@ $(BUILD) :
|
|||||||
# Rule to make output directory
|
# Rule to make output directory
|
||||||
$(BIN) :
|
$(BIN) :
|
||||||
$Qmkdir $@
|
$Qmkdir $@
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Standard build rules
|
# Standard build rules
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.a:
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
@echo $(notdir $@)
|
||||||
|
@rm -f $@
|
||||||
|
@$(AR) -rc $@ $^
|
||||||
|
|
||||||
$(BUILD)/%.c.o: %.c | $(BUILD)
|
#---------------------------------------------------------------------------------
|
||||||
$(LOG)
|
%.o: %.cpp
|
||||||
-$Qmkdir -p $(dir $@)
|
@echo $(notdir $<)
|
||||||
$Q$(CC) -c $(CFLAGS) $< -o $@
|
@$(CXX) -MMD -MP -MF $(DEPSDIR)/$*.d $(CXXFLAGS) $(INCLUDE) -c $< -o $@ $(ERROR_FILTER)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.o: %.c
|
||||||
|
@echo $(notdir $<)
|
||||||
|
$(CC) -MMD -MP -MF $(DEPSDIR)/$*.d $(CFLAGS) $(INCLUDE) -c $< -o $@ $(ERROR_FILTER)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.o: %.S
|
||||||
|
@echo $(notdir $<)
|
||||||
|
$(CC) -MMD -MP -MF $(DEPSDIR)/$*.d -x assembler-with-cpp $(ASFLAGS) -c $< -o $@ $(ERROR_FILTER)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.png.o : %.png
|
||||||
|
@echo $(notdir $<)
|
||||||
|
@bin2s -a 32 $< | $(AS) -o $(@)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.jpg.o : %.jpg
|
||||||
|
@echo $(notdir $<)
|
||||||
|
@bin2s -a 32 $< | $(AS) -o $(@)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.ttf.o : %.ttf
|
||||||
|
@echo $(notdir $<)
|
||||||
|
@bin2s -a 32 $< | $(AS) -o $(@)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.bin.o : %.bin
|
||||||
|
@echo $(notdir $<)
|
||||||
|
@bin2s -a 32 $< | $(AS) -o $(@)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.wav.o : %.wav
|
||||||
|
@echo $(notdir $<)
|
||||||
|
@bin2s -a 32 $< | $(AS) -o $(@)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.mp3.o : %.mp3
|
||||||
|
@echo $(notdir $<)
|
||||||
|
@bin2s -a 32 $< | $(AS) -o $(@)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.ogg.o : %.ogg
|
||||||
|
@echo $(notdir $<)
|
||||||
|
@bin2s -a 32 $< | $(AS) -o $(@)
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Assembly listing rules
|
# Assembly listing rules
|
||||||
@ -179,3 +261,9 @@ clean :
|
|||||||
# Phony targets
|
# Phony targets
|
||||||
|
|
||||||
.PHONY : $(PHONY)
|
.PHONY : $(PHONY)
|
||||||
|
|
||||||
|
-include $(DEPENDS)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
endif
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
@ -1,18 +0,0 @@
|
|||||||
###############################################################################
|
|
||||||
# Source files
|
|
||||||
|
|
||||||
# The source files to compile.
|
|
||||||
SRC := src/main.c
|
|
||||||
|
|
||||||
# Include directories
|
|
||||||
INC_DIRS := src
|
|
||||||
# Library directories
|
|
||||||
LIB_DIRS :=
|
|
||||||
# The names of libraries to use.
|
|
||||||
LIBS :=
|
|
||||||
# The output directory for compiled results.
|
|
||||||
BIN := bin
|
|
||||||
# The name of the output file to generate.
|
|
||||||
TARGET := $(BIN)/$(notdir $(CURDIR)).mod
|
|
||||||
# C compiler flags
|
|
||||||
CFLAGS :=
|
|
Loading…
Reference in New Issue
Block a user