Usermode/Libraries - Hacks to get SDL ver of AxWin3 working
authorJohn Hodge <[email protected]>
Wed, 3 Jul 2013 09:42:21 +0000 (17:42 +0800)
committerJohn Hodge <[email protected]>
Wed, 3 Jul 2013 09:42:21 +0000 (17:42 +0800)
Usermode/Libraries/Makefile.cfg
Usermode/Libraries/Makefile.tpl
Usermode/Libraries/libimage_sif.so_src/main.c

index 4bb2c99..d134c85 100644 (file)
@@ -15,6 +15,15 @@ ifeq ($(ARCHDIR),native)
   LDFLAGS += -Wl,-init,SoMain
   CFLAGS += -fPIC
  endif
+else ifneq ($(HOST_ARCH),)
+ ASFLAGS += -D ARCHDIR=$(ARCHDIR) -D __ASSEMBLER__=1
+ #CPPFLAGS := -D SoMain="__attribute__ ((constructor(101))) libacessnative_init"
+ LD := $(CC)
+ ifeq ($(PLATFORM),windows)
+ else
+  LDFLAGS += -Wl,-init,SoMain
+  CFLAGS += -fPIC
+ endif
 else
  CPPFLAGS := -ffreestanding
  CFLAGS   := -fno-stack-protector -fPIC
index 0f6253c..7c9546f 100644 (file)
@@ -10,7 +10,8 @@ ifeq ($(ARCH),native)
  LDFLAGS := $(LDFLAGS:-lc=-lc_acess)
 endif
 
-ifneq ($(lastword $(subst -, ,$(basename $(LD)))),ld)
+_LD_CMD := $(lastword $(subst -, ,$(firstword $(LD))))
+ifneq ($(_LD_CMD),ld)
   LDFLAGS := $(subst -soname ,-Wl$(comma)-soname$(comma),$(LDFLAGS))
   LDFLAGS := $(subst -Map ,-Wl$(comma)-Map$(comma),$(LDFLAGS))
   LDFLAGS := $(LDFLAGS:-x=-Wl,-x)
@@ -80,7 +81,7 @@ endif
 #      for f in $(INCFILES); do ln -s $f $(ACESSDIR)/include/$f; done
 #endif
 
-$(_BIN): $(OBJ) $(_LIBS)
+$(_BIN): $(OBJ)
        @mkdir -p $(dir $(_BIN))
        @echo [LD] -o $(BIN) $(OBJ)
        $V$(LD) $(LDFLAGS) -o $(_BIN) $(OBJ) $(shell $(CC) -print-libgcc-file-name)
index 180668a..a515856 100644 (file)
@@ -8,6 +8,8 @@
 //#include <image_sif.h>
 #include <acess/sys.h> // _SysDebug
 
+#define        _SysDebug(...)  do{}while(0)
+
 // === STRUCTURES ===
 struct sHeader
 {

UCC git Repository :: git.ucc.asn.au