You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,5 @@
1
1
2
+
### February 22, 2026 version 1.5.13
2
3
* Add support for `freebsd-x86_64` with `freebsd-x86_64.properties` ([pull #824](https://github.com/bytedeco/javacpp/pull/824))
3
4
* Use `-mno-outline-atomics` in `linux-arm64.properties` to work around linker bug ([issue bytedeco/javacpp-presets#1671](https://github.com/bytedeco/javacpp-presets/issues/1671))
4
5
* Add `NativeAllocationTracer` to track allocations and deallocations of `Pointer` ([pull #816](https://github.com/bytedeco/javacpp/pull/816))
Another option available to Gradle users is [Gradle JavaCPP](https://github.com/bytedeco/gradle-javacpp), and similarly for Scala users there is [SBT-JavaCPP](https://github.com/bytedeco/sbt-javacpp).
@@ -56,20 +56,21 @@ Required Software
56
56
-----------------
57
57
To use JavaCPP, you will need to download and install the following software:
58
58
59
-
* An implementation of Java SE 7 or newer:
59
+
* An implementation of Java SE 8 or newer:
60
60
* OpenJDK http://openjdk.java.net/install/ or
61
61
* Oracle JDK http://www.oracle.com/technetwork/java/javase/downloads/ or
62
-
* IBM JDK http://www.ibm.com/developerworks/java/jdk/
63
-
* A C++ compiler, out of which these have been tested:
62
+
* IBM JDK http://www.ibm.com/developerworks/java/jdk/ or
63
+
* Microsoft JDK https://www.microsoft.com/openjdk etc
64
+
* A C++11 compiler, out of which these have been tested:
64
65
* GNU C/C++ Compiler (Linux, etc.) http://gcc.gnu.org/
65
66
* For Windows x86 and x64 http://mingw-w64.org/
66
67
* LLVM Clang (Mac OS X, etc.) http://clang.llvm.org/
67
68
* Microsoft C/C++ Compiler, part of Visual Studio https://visualstudio.microsoft.com/
To produce binary files for Android 4.0 or newer, you will also have to install:
71
+
To produce binary files for Android 7.0 or newer, you will also have to install:
71
72
72
-
* Android NDK r7 or newer http://developer.android.com/ndk/downloads/
73
+
* Android NDK r18 or newer http://developer.android.com/ndk/downloads/
73
74
74
75
And similarly to target iOS, you will need to install either:
75
76
@@ -83,7 +84,6 @@ To modify the source code, please note that the project files were created for:
83
84
Finally, because we are dealing with native code, bugs can easily crash the virtual machine. Luckily, the HotSpot VM provides some tools to help us debug under those circumstances:
84
85
85
86
* Troubleshooting Guide for Java SE with HotSpot VM
0 commit comments