Skip to content

Commit

Permalink
* Add -stdlib=libc++ option to iOS properties, required by `clang+…
Browse files Browse the repository at this point in the history
…+` to support C++11 (pull #221)
  • Loading branch information
saudet committed Feb 13, 2018
1 parent 31419c7 commit db5aeaa
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

* Add `-stdlib=libc++` option to iOS properties, required by `clang++` to support C++11 ([pull #221](https://github.com/bytedeco/javacpp/pull/221))
* Make it possible to define read-only containers with `Parser` by prepending `const ` ([issue #223](https://github.com/bytedeco/javacpp/issues/223))
* Fix `Parser` failure of variable or function declarations on names starting with `::`
* Access elements of basic containers defined in `Parser` with `at()` instead of `operator[]` ([issue #223](https://github.com/bytedeco/javacpp/issues/223))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ platform.compiler.fastfpu=-ffast-math
platform.compiler.nodeprecated=-Wno-deprecated-declarations
platform.compiler.noexceptions=-fno-exceptions -fno-rtti
platform.compiler.nowarnings=-w
platform.compiler.output=-arch armv6 -arch armv7 -Wall -fPIC -miphoneos-version-min=5.0 -c -o\u0020
platform.compiler.output=-arch armv7 -stdlib=libc++ -Wall -fPIC -miphoneos-version-min=5.0 -c -o\u0020
platform.linkpath.prefix=-L
platform.linkpath=
platform.link.prefix=-l
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ platform.compiler.fastfpu=-ffast-math
platform.compiler.nodeprecated=-Wno-deprecated-declarations
platform.compiler.noexceptions=-fno-exceptions -fno-rtti
platform.compiler.nowarnings=-w
platform.compiler.output=-arch arm64 -Wall -fPIC -miphoneos-version-min=5.0 -c -o\u0020
platform.compiler.output=-arch arm64 -stdlib=libc++ -Wall -fPIC -miphoneos-version-min=5.0 -c -o\u0020
platform.linkpath.prefix=-L
platform.linkpath=
platform.link.prefix=-l
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ platform.compiler.fastfpu=-msse3 -ffast-math -mfpmath=sse
platform.compiler.nodeprecated=-Wno-deprecated-declarations
platform.compiler.noexceptions=-fno-exceptions -fno-rtti
platform.compiler.nowarnings=-w
platform.compiler.output=-arch i686 -Wall -fPIC -mios-simulator-version-min=5.0 -c -o\u0020
platform.compiler.output=-arch i686 -stdlib=libc++ -Wall -fPIC -mios-simulator-version-min=5.0 -c -o\u0020
platform.linkpath.prefix=-L
platform.linkpath=
platform.link.prefix=-l
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ platform.compiler.fastfpu=-msse3 -ffast-math -mfpmath=sse
platform.compiler.nodeprecated=-Wno-deprecated-declarations
platform.compiler.noexceptions=-fno-exceptions -fno-rtti
platform.compiler.nowarnings=-w
platform.compiler.output=-arch x86_64 -Wall -fPIC -mios-simulator-version-min=5.0 -c -o\u0020
platform.compiler.output=-arch x86_64 -stdlib=libc++ -Wall -fPIC -mios-simulator-version-min=5.0 -c -o\u0020
platform.linkpath.prefix=-L
platform.linkpath=
platform.link.prefix=-l
Expand Down

0 comments on commit db5aeaa

Please sign in to comment.