Update to v095r09 release.

byuu says:

Changelog:

- all of fc/ ported to "auto function() -> return;" syntax
  - (includes all of cartridge/board and cartridge/chip as well; even
    though they're all deprecated)
- sfc balanced profile ported to "auto function() -> return;" syntax
- sfc balanced and performance profiles compile again
- Linux always gets -ldl
- removed arch=x86 logic from nall/GNUmakefile, as TDM/GCC64 can't
  produce bug-free 32-bit binaries anyway

The only code that continues to use the old function syntax is the SFC
performance core, obscure parts of nall that higan doesn't use, and the
pieces of code that weren't written by me (blargg's SFC-DSP, Ryphecha's
sinc resampler, and OV2's xaudio2 header file.)

I was too burned out to finish it tonight. The above was about four
hours straight of non-stop typing. Really can't wait to be done with
this once and for all.
This commit is contained in:
Tim Allen
2015-12-05 16:44:49 +11:00
parent a219f9c121
commit 65a3306ad5
105 changed files with 3917 additions and 4011 deletions

View File

@@ -69,7 +69,7 @@ endif
# windows settings
ifeq ($(platform),windows)
link := $(link) -lws2_32 -lole32
link += -lws2_32 -lole32
endif
# macosx settings
@@ -78,6 +78,11 @@ ifeq ($(platform),macosx)
link += -lc++ -lobjc
endif
# linux settings
ifeq ($(platform),linux)
link += -ldl
endif
# bsd settings
ifeq ($(platform),bsd)
flags += -I/usr/local/include
@@ -93,12 +98,6 @@ ifeq ($(threaded),true)
endif
endif
# cross-compilation support
ifeq ($(arch),x86)
flags := -m32 $(flags)
link := -m32 $(link)
endif
# paths
prefix := $(HOME)/.local