osxcross/CHANGELOG
Thomas Pöchtrager 5afdf2b471 Wrapper changes:
* Support for generating fat object files with gcc and '-foc-use-gcc-libstdc++'
  has been removed.

  This feature was not 100% correctly implemented; using multiple source files
  did not work, i.e.: 'o32-g++ -m32 -m64 a.cpp b.cpp' would have failed;
  And I refuse to implement that, instead I am removing all source file handling
  from the wrapper with this commit for simplicity.

  This feature should be implemented in the gcc driver instead.

  This does NOT affect clang's fat object file support, which is implemented in
  clang's darwin driver.

* '-oc-use-gcc-lib' has been renamed to '-foc-use-gcc-libstdc++'.

* Added support for '-stdc++' and '-gstdc++' compiler "shortcuts"

  o32-clang++ --> uses libstdc++ for <= 10.8 and libc++ for >= 10.9

  o32-clang++-libc++ --> uses the SDK's libc++
  o32-clang++-stdc++ --> uses the SDK's libstdc++
  o32-clang++-gstdc++ --> uses gcc's (build_gcc.sh) libstdc++

* Entirely rewrote the command line parser; the previous one wasn't very
  readable.

* Minor Readme Updates

* Added unit tests

* Removed OSXCROSS_C_STANDARD / OSXCROSS_CXX_STANDARD support

  I am no longer parsing -std=, so this feature has to be dropped.
  Setting the language standard via an env variable isn't a good idea anyway.

* Removed unneeded stuff

Other Changes:

* Version bump to 0.11
2015-08-22 23:15:27 +02:00

139 lines
4.0 KiB
Plaintext

/****************************** v0.11 ********************************/
changed:
* '-oc-use-gcc-libs' has been renamed to '-foc-use-gcc-libstdc++'
* support for generating fat object files with gcc and '-foc-use-gcc-libstdc++'
has been removed.
added:
* support for '-stdc++' and '-gstdc++' compiler "shortcuts"
o32-clang++ --> uses libstdc++ for <= 10.8 and libc++ for >= 10.9
o32-clang++-libc++ --> uses the SDK's libc++
o32-clang++-stdc++ --> uses the SDK's libstdc++
o32-clang++-gstdc++ --> uses gcc's (build_gcc.sh) libstdc++
* unit tests (wrapper)
/****************************** v0.10 ********************************/
changed:
* improved and colorized wrapper error/warning/debug/info messages
* updated cctools to 870
* updated ld64 to 242
added:
* Windows support via Cygwin
* OpenBSD and DragonFlyBSD support
* Linux ARM support
* Linux PPC/PPC64 support: Totally untested, but compiles
* gcc compiler support: OSXCross can now be built with gcc
* 'osxcross-man' man page tool
* p7zip sdk packaging script
* a minimalistic xcrun tool
* support for ccache symlinks
* darling-dmg sdk packaging script
* include path warnings for /usr/include and /usr/local/include
(can be switched off via 'OSXCROSS_NO_INCLUDE_PATH_WARNINGS=1')
* an option to silence osxcross extension warnings
(OSXCROSS_NO_EXTENSION_WARNINGS=1)
/******************************* v0.9 *******************************/
changed:
* updated cctools to 862
* updated ld64 to 241.9
added:
* binutils / gdb build script
* OSXCROSS_GCC_NO_STATIC_RUNTIME option (env)
* osxcross-macports: a minimalistic macports packet manager
/******************************* v0.8 *******************************/
changed:
* updated cctools to 855
* updated ld64 to 236.3
* gcc 4.9.0 -> gcc 4.9.2
added:
* support for new '-arch x86_64h' (requires clang 3.5+)
* support for multiple '-arch' flags with gcc
* scripts to make sdk extraction possible on linux (xcode 4.2 only)
* OS X 10.10 support (DP1)
* pkg-config wrapper
/******************************* v0.7 *******************************/
added:
* new compiler wrapper written in C++
* '-oc-use-gcc-libs' option (uses './build_gcc.sh' libstdc++)
* 10.6 SDK support (10.4-10.9 are all supported now)
* 'sw_vers' tool, which is required by some projects
* '-stdlib=' support for gcc (as an extension through the wrapper)
* 'OSXCROSS_C_STANDARD' env var (set C standard globally)
* 'OSXCROSS_CXX_STANDARD' env var (set C++ standard globally)
* OS X support (as host)
changed:
* 'osxcross-conf', 'osxcross-env' and the (fake) 'dsymutil' are now
implemented in the wrapper
* <arch>-apple-darwinXX-cc/c++ defaults now to clang
* switched to two-space indents
* gcc 4.8.2 -> gcc 4.9.0
fixed:
* 'MACOSX_DEPLOYMENT_TARGET' env var is now handled correctly
/******************************* v0.6 *******************************/
added:
* NetBSD support
* dependencies installer script (Don Bright)
* SDK packaging script
/******************************* v0.5 *******************************/
added:
* libc++ support (for both, clang and gcc)
* FreeBSD support
changed:
* attempt to make the toolchain less path dependent
* updated cctools to 845
fixed:
* help clang to find its own intrinsic headers
(this issue appears to be fixed in clang 3.4+)
* building the toolchain on 32 bit systems
/******************************* v0.4 *******************************/
added:
* gcc build script
* a workaround for buggy unistd.h headers
/******************************* v0.3 *******************************/
added:
* 10.9 SDK support
* *-apple-darwin*-clang* symlinks (same as invoking oXX-clang)
changed:
* no need to build extra cctools binaries for targeting i386,
symlinking the x86_64 builds works as well
/******************************* v0.2 *******************************/
added:
* a check for broken unistd.h
* comments to build.sh
changed:
* updated cctools to 839 with ld64-134.9
fixed:
* check if MacOSX package is present in tarballs
/******************************* v0.1 *******************************/
initial commit.