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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Young <gregoryyoung1@gmail.com>2015-04-09 13:03:26 +0300
committerGreg Young <gregoryyoung1@gmail.com>2015-04-09 13:03:26 +0300
commit5a228a65a0f6fc2c0f6551f2379b04f2636cf6ad (patch)
tree079c51f5a99e7dd4effb35796692075606d862b5 /samples
parenta05bc14cf06ff23e49bf02968cbe5f48320e31a5 (diff)
add compilation instructions
Diffstat (limited to 'samples')
-rw-r--r--samples/profiler/sample.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/samples/profiler/sample.c b/samples/profiler/sample.c
index 49af781a55a..45c46da07d9 100644
--- a/samples/profiler/sample.c
+++ b/samples/profiler/sample.c
@@ -2,10 +2,15 @@
/*
* Bare bones profiler. Compile with:
- * gcc -shared -o mono-profiler-sample.so sample.c `pkg-config --cflags --libs mono`
- * Install the binary where the dynamic loader can find it.
+ *
+ * linux : gcc -shared -o mono-profiler-sample.so sample.c `pkg-config --cflags --libs mono`
+ * mac : gcc sample.c -o mono-profiler-sample.dylib -Dmono_free=free -lz `pkg-config --cflags mono-2` -undefined suppress -flat_namespace
+ *
+ * Install the binary where the dynamic loader can find it. eg /usr/lib etc
* Then run mono with:
* mono --profile=sample your_application.exe
+ *
+ * Note if you name a profiler with more than 8 characters (eg sample6789) appears to not work
*/
struct _MonoProfiler {