Skip to content

Commit

Permalink
Misc. fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
AliceLR committed Dec 14, 2023
1 parent ed5ff9d commit 65524e2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
9 changes: 6 additions & 3 deletions arch/amiga/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
# amiga makefile generics
#

CROSS_COMPILE ?= ppc-amigaos-
CC = gcc -mcrt=clib2 -I${PREFIX}/clib2/include
CXX = g++ -mcrt=clib2 -I${PREFIX}/clib2/include
CC = ppc-amigaos-gcc -mcrt=clib2 -I${PREFIX}/clib2/include
CXX = ppc-amigaos-g++ -mcrt=clib2 -I${PREFIX}/clib2/include
STRIP = ppc-amigaos-strip
OBJCOPY = true
CHMOD = true

Expand All @@ -16,6 +16,9 @@ DSOPOST = .so
DSORPATH = -Wl,-rpath,${LIBDIR}
DSOSONAME = -Wl,-soname,

# Block --host, which will break things.
CROSS_COMPILE =

ifeq (${BUILD_MODULAR},1)
ARCH_CFLAGS += -fPIC
ARCH_CXXFLAGS += -fPIC
Expand Down
2 changes: 1 addition & 1 deletion arch/djgpp/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# DJGPP Makefile
#

CROSS_COMPILE ?= i586-pc-msdosdjgpp
CROSS_COMPILE ?= i586-pc-msdosdjgpp-
BINEXT = .exe

EXTRA_LICENSES += ${LICENSE_DJGPP} ${LICENSE_LGPL2}
Expand Down
1 change: 0 additions & 1 deletion arch/gp2x/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
#

CROSS_COMPILE ?= arm-open2x-linux-

BINEXT = .gpe

# Disable rules that require target code to run natively.
Expand Down

0 comments on commit 65524e2

Please sign in to comment.