Skip to content

Commit

Permalink
* Add .a as an allowed library extension for iOS so they can get b…
Browse files Browse the repository at this point in the history
…undled
  • Loading branch information
saudet committed Jan 31, 2018
1 parent 7cba4d6 commit 944f6b1
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 `.a` as an allowed library extension for iOS so they can get bundled
* Fix `Parser` failing on variables with direct list initialization `{ ... }` ([issue #223](https://github.com/bytedeco/javacpp/issues/223))
* Allow `Parser` to map and cast function pointers to `Pointer`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ platform.framework.prefix=-framework\u0020
platform.framework.suffix=
platform.framework=
platform.library.prefix=
platform.library.suffix=.o
platform.library.suffix=.o:.a
platform.library.static=true
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ platform.framework.prefix=-framework\u0020
platform.framework.suffix=
platform.framework=
platform.library.prefix=
platform.library.suffix=.o
platform.library.suffix=.o:.a
platform.library.static=true
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ platform.framework.prefix=-framework\u0020
platform.framework.suffix=
platform.framework=
platform.library.prefix=
platform.library.suffix=.o
platform.library.suffix=.o:.a
platform.library.static=true
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ platform.framework.prefix=-framework\u0020
platform.framework.suffix=
platform.framework=
platform.library.prefix=
platform.library.suffix=.o
platform.library.suffix=.o:.a
platform.library.static=true

0 comments on commit 944f6b1

Please sign in to comment.