Skip to content

Commit

Permalink
CONFIGURE: Add portlibs paths for GameCube and Wii
Browse files Browse the repository at this point in the history
Libraries provided by DevkitPPC are stored in these directories and
should be added to search paths
  • Loading branch information
lephilousophe committed Oct 9, 2019
1 parent 761f97b commit 8db65d0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions configure
Expand Up @@ -2816,10 +2816,12 @@ case $_host_os in
append_var CXXFLAGS "-fmodulo-sched"
append_var CXXFLAGS "-fuse-cxa-atexit"
append_var CXXFLAGS "-I$DEVKITPRO/libogc/include"
append_var CXXFLAGS "-I$DEVKITPRO/portlibs/ppc/include"
# libogc is required to link the cc tests (includes _start())
append_var LDFLAGS "-mogc"
append_var LDFLAGS "-mcpu=750"
append_var LDFLAGS "-L$DEVKITPRO/libogc/lib/cube"
append_var LDFLAGS "-L$DEVKITPRO/portlibs/ppc/lib"
append_var LDFLAGS "-logc"
if test "$_dynamic_modules" = "yes" ; then
# retarded toolchain patch forces --gc-sections, overwrite it
Expand Down Expand Up @@ -3012,10 +3014,12 @@ case $_host_os in
append_var CXXFLAGS "-fmodulo-sched"
append_var CXXFLAGS "-fuse-cxa-atexit"
append_var CXXFLAGS "-I$DEVKITPRO/libogc/include"
append_var CXXFLAGS "-I$DEVKITPRO/portlibs/ppc/include"
# libogc is required to link the cc tests (includes _start())
append_var LDFLAGS "-mrvl"
append_var LDFLAGS "-mcpu=750"
append_var LDFLAGS "-L$DEVKITPRO/libogc/lib/wii"
append_var LDFLAGS "-L$DEVKITPRO/portlibs/ppc/lib"
append_var LDFLAGS "-logc"
if test "$_dynamic_modules" = "yes" ; then
# retarded toolchain patch forces --gc-sections, overwrite it
Expand Down

0 comments on commit 8db65d0

Please sign in to comment.