From be8c03ba27d624f5915b1102e27baff37ed6776d Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Tue, 1 Feb 2011 03:09:18 +0000 Subject: [PATCH] compiler_vm: updated README example to use single quotes correctly --- modules/compiler_vm/README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/compiler_vm/README b/modules/compiler_vm/README index cfe34667..10d65701 100644 --- a/modules/compiler_vm/README +++ b/modules/compiler_vm/README @@ -10,7 +10,7 @@ without installing qemu. No PBot installation or configuration is required in t To use the local non-vm 'cc' script, you will need to have gcc, gdb and astyle installed locally. Be aware that you need to single-quote or escape the code if you use the local 'cc' within a shell, -e.g.: ./cc $'char s[] = "hello, world"; puts(s); if(s[0] == 'h') puts("true");' +e.g.: ./cc $'char s[] = "hello, world"; puts(s); if(s[0] == \'h\') puts("true");' WARNING: Using the local 'cc' script outside of the virtual machine will not use qemu at all; it will affect local system -- compile "safe" code!