Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Soldatov <soldatov.a@samsung.com>2017-11-13 18:10:24 +0300
committerJan Kotas <jkotas@microsoft.com>2017-11-13 18:10:24 +0300
commit5a3daf5c58af053634a822d12e4819f1a6b671cd (patch)
tree78401ebb40b940ba009ab29a85397fc86ac05b56 /Documentation
parenta5fb2a35df8092f1e83220585f6c500a3ff4666e (diff)
[armel][cross] Fix command line arguments for cross compilation (#4923)
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/cross-building.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/Documentation/cross-building.md b/Documentation/cross-building.md
index 20b4bef05..04d2881d9 100644
--- a/Documentation/cross-building.md
+++ b/Documentation/cross-building.md
@@ -107,7 +107,9 @@ make -j8 objwriter
7. And to execute use:
```
-./corerun ilc.dll --codegenopt "AltJitNgen=* AltJit=*" --verbose @Hello.ilc.rsp
+./corerun ilc.dll --codegenopt "AltJitNgen=*" --verbose @Hello.ilc.rsp
+# Any other options to RyuJIT could be passed via --codegenopt argument, e.g.:
+#./corerun ilc.dll --codegenopt "AltJitNgen=*" --codegenopt "NgenDisasm=*" --verbose @Hello.ilc.rsp
# For linking
clang-3.9 -target arm-linux-gnueabi --sysroot=corert/cross/rootfs/armel -Bcorert/cross/rootfs/armel/usr/lib/gcc/armv7l-tizen-linux-gnueabi/6.2.1 -Lcorert/cross/rootfs/armel/usr/lib/gcc/armv7l-tizen-linux-gnueabi/6.2.1 Hello.o -o Hello corert/bin/Linux.armel.Debug/sdk/libbootstrapper.a corert/bin/Linux.armel.Debug/sdk/libRuntime.a corert/bin/Linux.armel.Debug/sdk/libSystem.Private.CoreLib.Native.a corert/bin/Linux.armel.Debug/framework/System.Native.a corert/bin/Linux.armel.Debug/framework/libSystem.Globalization.Native.a -g -Wl,-rpath,'$ORIGIN' -pthread -lstdc++ -ldl -lm -luuid -lrt -fPIC