Fixed Windows build, added Unicode support in Windows.
This commit is contained in:
parent
4cf78139a8
commit
96063fb0da
@ -11,9 +11,10 @@
|
|||||||
#endif
|
#endif
|
||||||
#include "gb.h"
|
#include "gb.h"
|
||||||
|
|
||||||
/* The libretro frontend does not link against rewind.c, so we provide empty weak alternatives to its functions */
|
#ifdef DISABLE_REWIND
|
||||||
void __attribute__((weak)) GB_rewind_free(GB_gameboy_t *gb) { }
|
#define GB_rewind_free(...)
|
||||||
void __attribute__((weak)) GB_rewind_push(GB_gameboy_t *gb) { }
|
#define GB_rewind_push(...)
|
||||||
|
#endif
|
||||||
|
|
||||||
void GB_attributed_logv(GB_gameboy_t *gb, GB_log_attributes attributes, const char *fmt, va_list args)
|
void GB_attributed_logv(GB_gameboy_t *gb, GB_log_attributes attributes, const char *fmt, va_list args)
|
||||||
{
|
{
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
#define GB_h
|
#define GB_h
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdio.h>
|
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
|
||||||
#include "gb_struct_def.h"
|
#include "gb_struct_def.h"
|
||||||
|
4
Makefile
4
Makefile
@ -106,6 +106,10 @@ COCOA_SOURCES := $(shell ls Cocoa/*.m) $(shell ls HexFiend/*.m)
|
|||||||
QUICKLOOK_SOURCES := $(shell ls QuickLook/*.m) $(shell ls QuickLook/*.c)
|
QUICKLOOK_SOURCES := $(shell ls QuickLook/*.m) $(shell ls QuickLook/*.c)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(PLATFORM),windows32)
|
||||||
|
CORE_SOURCES += $(shell ls Windows/*.c)
|
||||||
|
endif
|
||||||
|
|
||||||
CORE_OBJECTS := $(patsubst %,$(OBJ)/%.o,$(CORE_SOURCES))
|
CORE_OBJECTS := $(patsubst %,$(OBJ)/%.o,$(CORE_SOURCES))
|
||||||
COCOA_OBJECTS := $(patsubst %,$(OBJ)/%.o,$(COCOA_SOURCES))
|
COCOA_OBJECTS := $(patsubst %,$(OBJ)/%.o,$(COCOA_SOURCES))
|
||||||
QUICKLOOK_OBJECTS := $(patsubst %,$(OBJ)/%.o,$(QUICKLOOK_SOURCES))
|
QUICKLOOK_OBJECTS := $(patsubst %,$(OBJ)/%.o,$(QUICKLOOK_SOURCES))
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#include <SDL2/SDL.h>
|
#include <SDL2/SDL.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
#include <stdio.h>
|
||||||
#include "utils.h"
|
#include "utils.h"
|
||||||
#include "gui.h"
|
#include "gui.h"
|
||||||
#include "font.h"
|
#include "font.h"
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
#include <stdio.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <SDL2/SDL.h>
|
#include <SDL2/SDL.h>
|
||||||
#include <Core/gb.h>
|
#include <Core/gb.h>
|
||||||
|
14
Windows/utf8_compat.c
Executable file
14
Windows/utf8_compat.c
Executable file
@ -0,0 +1,14 @@
|
|||||||
|
#include <windows.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <winnls.h>
|
||||||
|
|
||||||
|
FILE *fopen(const char *filename, const char *mode)
|
||||||
|
{
|
||||||
|
wchar_t w_filename[MAX_PATH] = {0,};
|
||||||
|
MultiByteToWideChar(CP_UTF8, 0, filename, -1, w_filename, sizeof(w_filename) / sizeof(w_filename[0]));
|
||||||
|
|
||||||
|
wchar_t w_mode[8] = {0,};
|
||||||
|
MultiByteToWideChar(CP_UTF8, 0, mode, -1, w_mode, sizeof(w_mode) / sizeof(w_mode[0]));
|
||||||
|
|
||||||
|
return _wfopen(w_filename, w_mode);
|
||||||
|
}
|
@ -16,13 +16,7 @@ SOURCES_C := $(CORE_DIR)/Core/gb.c \
|
|||||||
$(CORE_DIR)/libretro/dmg_boot.c \
|
$(CORE_DIR)/libretro/dmg_boot.c \
|
||||||
$(CORE_DIR)/libretro/libretro.c
|
$(CORE_DIR)/libretro/libretro.c
|
||||||
|
|
||||||
ifeq ($(HAVE_DEBUGGER), 1)
|
CFLAGS += -DDISABLE_TIMEKEEPING -DDISABLE_REWIND -DDISABLE_DEBUGGER
|
||||||
SOURCES_C += $(CORE_DIR)/Core/debugger.c \
|
|
||||||
$(CORE_DIR)/Core/z80_disassembler.c
|
|
||||||
else
|
|
||||||
CFLAGS += -DDISABLE_DEBUGGER
|
|
||||||
endif
|
|
||||||
CFLAGS += -DDISABLE_TIMEKEEPING
|
|
||||||
|
|
||||||
|
|
||||||
SOURCES_CXX :=
|
SOURCES_CXX :=
|
||||||
|
@ -28,7 +28,7 @@ CORE_DIR := $(realpath ../..)
|
|||||||
include ../Makefile.common
|
include ../Makefile.common
|
||||||
|
|
||||||
LOCAL_SRC_FILES := $(SOURCES_CXX) $(SOURCES_C)
|
LOCAL_SRC_FILES := $(SOURCES_CXX) $(SOURCES_C)
|
||||||
LOCAL_CFLAGS += -DINLINE=inline -DHAVE_STDINT_H -DHAVE_INTTYPES_H -D__LIBRETRO__ -DNDEBUG -D_USE_MATH_DEFINES -DGB_INTERNAL -std=c99 -I$(CORE_DIR) -DSAMEBOY_CORE_VERSION=\"$(VERSION)\" -DDISABLE_DEBUGGER -DDISABLE_TIMEKEEPING -Wno-multichar
|
LOCAL_CFLAGS += -DINLINE=inline -DHAVE_STDINT_H -DHAVE_INTTYPES_H -D__LIBRETRO__ -DNDEBUG -D_USE_MATH_DEFINES -DGB_INTERNAL -std=c99 -I$(CORE_DIR) -DSAMEBOY_CORE_VERSION=\"$(VERSION)\" -DDISABLE_DEBUGGER -DDISABLE_REWIND -DDISABLE_TIMEKEEPING -Wno-multichar
|
||||||
LOCAL_C_INCLUDES = $(INCFLAGS)
|
LOCAL_C_INCLUDES = $(INCFLAGS)
|
||||||
|
|
||||||
include $(BUILD_SHARED_LIBRARY)
|
include $(BUILD_SHARED_LIBRARY)
|
||||||
|
Loading…
Reference in New Issue
Block a user