Skip to content

Commit 166a7fd

Browse files
committed
[GR-39071] Run broken links check.
PullRequest: graal/12262
2 parents f0292ac + cdfb0cd commit 166a7fd

File tree

6 files changed

+17
-18
lines changed

6 files changed

+17
-18
lines changed

docs/introduction.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -68,26 +68,26 @@ The core components enable using GraalVM as a runtime platform for programs writ
6868
* Java HotSpot VM
6969
* Graal compiler - the top-tier JIT compiler
7070
* Polyglot API – the APIs for combining programming languages in a shared runtime
71-
* [GraalVM Updater](../reference-manual/graalvm-updater.md) - a utility to install additional functionalities
71+
* [GraalVM Updater](reference-manual/graalvm-updater.md) - a utility to install additional functionalities
7272

7373
### Additional Components
7474
GraalVM core installation can be extended with more languages runtimes and utilities.
7575

7676
Tools/Utilities:
7777

78-
* [Native Image](../reference-manual/native-image/README.md) -- a technology to compile an application ahead-of-time into a native platform executable.
79-
* [LLVM toolchain](../reference-manual/llvm/README.md) -- a set of tools and APIs for compiling native programs to bitcode that can be executed on GraalVM.
78+
* [Native Image](reference-manual/native-image/README.md) -- a technology to compile an application ahead-of-time into a native platform executable.
79+
* [LLVM toolchain](reference-manual/llvm/README.md) -- a set of tools and APIs for compiling native programs to bitcode that can be executed on GraalVM.
8080

8181
Runtimes:
8282

83-
* [JavaScript runtime](../reference-manual/js/README.md) with JavaScript REPL with the JavaScript interpreter
84-
* [Node.js](../../reference-manual/js/NodeJS.md) -- the Node.js 16.14.2 runtime for JavaScript
85-
* [LLVM runtime](../reference-manual/llvm/README.md) with `lli` tool to directly execute programs from LLVM bitcode
86-
* [Java on Truffle](../reference-manual/java-on-truffle/README.md) -- a JVM implementation built upon the [Truffle framework](../../truffle/docs/README.md) to run Java via a Java bytecode interpreter.
87-
* [Python](../reference-manual/python/README.md) -- Python 3.8.5 compatible
88-
* [Ruby](../reference-manual/ruby/README.md) -- Ruby 3.0.3 compatible
89-
* [R](../reference-manual/r/README.md) -- GNU R 4.0.3 compatible
90-
* [GraalWasm](../reference-manual/wasm/README.md) -- WebAssembly (Wasm)
83+
* [JavaScript runtime](reference-manual/js/README.md) with JavaScript REPL with the JavaScript interpreter
84+
* [Node.js](reference-manual/js/NodeJS.md) -- the Node.js 16.14.2 runtime for JavaScript
85+
* [LLVM runtime](reference-manual/llvm/README.md) with `lli` tool to directly execute programs from LLVM bitcode
86+
* [Java on Truffle](reference-manual/java-on-truffle/README.md) -- a JVM implementation built upon the [Truffle framework](../truffle/docs/README.md) to run Java via a Java bytecode interpreter.
87+
* [Python](reference-manual/python/README.md) -- Python 3.8.5 compatible
88+
* [Ruby](reference-manual/ruby/README.md) -- Ruby 3.0.3 compatible
89+
* [R](reference-manual/r/README.md) -- GNU R 4.0.3 compatible
90+
* [GraalWasm](reference-manual/wasm/README.md) -- WebAssembly (Wasm)
9191

9292
## Licensing and Support
9393

docs/reference-manual/native-image/guides/build-polyglot-native-executable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,4 @@ The native executable version runs faster than running the same application on t
8888
### Related Documentation
8989
9090
* [Embedding Languages](../../embedding/embed-languages.md)
91-
* [JavaScript and Java Interoperability](../../javascript/JavaInteroperability.md)
91+
* [JavaScript and Java Interoperability](../../js/JavaInteroperability.md)

docs/reference-manual/native-image/guides/optimize-native-executable-with-pgo.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,5 +186,4 @@ With PGO you "train" your application for specific workloads and significantly i
186186

187187
### Related Documentation
188188

189-
- [Improving performance of GraalVM native images with profile-guided optimizations](https://medium.com/graalvm/improving-performance-of-graalvm-native-images-with-profile-guided-optimizations-9c431a834edb)
190-
- [Profile-Guided Optimizations](../PGOEnterprise.md)
189+
- [Improving performance of GraalVM native images with profile-guided optimizations](https://medium.com/graalvm/improving-performance-of-graalvm-native-images-with-profile-guided-optimizations-9c431a834edb)

docs/security/security-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Developers can request static initializers that process sensitive information to
111111

112112
Native-image provides multiple ways to specify the certificate file used to define the default TrustStore.
113113
While the default behavior for native-image is to capture and use the default TrustStore from the buildtime host environment, this can be changed at runtime by setting the "javax.net.ssl.trustStore\*" system properties.
114-
Please see the [documentation](/reference-manual/native-image/CertificateManagement/) for more details.
114+
See the [documentation](../reference-manual/native-image/CertificateManagement.md) for more details.
115115

116116
In addition, developers can run the `native-image` builder in a dedicated environment, such as a container, that does not contain any sensitive information in the first place.
117117

docs/tools/visualvm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ This way your application will handle signals and capture a heap dump when it re
3131
The guest language REPL process must be started also with the `--jvm` flag to monitor it using VisualVM.
3232
This functionality is available with [GraalVM Enterprise Edition](https://www.oracle.com/downloads/graalvm-downloads.html).
3333
It is not available in GraalVM Community Edition.
34-
See the [Generating Native Heap Dumps](../reference-manual/native-image/HeapDumps.md) page for details on capturing heap dumps from a native image process.
34+
See the [Generating Native Heap Dumps](../reference-manual/native-image/guides/create-heap-dump-from-native-executable.md) page for details on capturing heap dumps from a native image process.
3535

3636
### Analyzing Objects
3737
Initially the Summary view for the Java heap is displayed.

truffle/docs/HostCompilation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
layout: docs
33
toc_group: truffle
4-
link_title: Host Optimization for interpreter code
5-
permalink: /graalvm-as-a-platform/language-implementation-framework/HostOptimization
4+
link_title: Host Optimization for Interpreter Code
5+
permalink: /graalvm-as-a-platform/language-implementation-framework/HostOptimization/
66
---
77
# Host Compilation for Interpreter Java code
88

0 commit comments

Comments
 (0)