mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-01-12 22:51:55 +08:00
30 lines
1.3 KiB
Diff
30 lines
1.3 KiB
Diff
Index: lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp
|
|
===================================================================
|
|
--- lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp (revision 190250)
|
|
+++ lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp (working copy)
|
|
@@ -630,7 +630,7 @@
|
|
O << markup("<mem:") << "[";
|
|
printRegName(O, MO1.getReg());
|
|
if (MO2.getImm()) {
|
|
- O << ":" << (MO2.getImm() << 3);
|
|
+ O << ", :" << (MO2.getImm() << 3);
|
|
}
|
|
O << "]" << markup(">");
|
|
}
|
|
Index: projects/sample/Makefile.llvm.rules
|
|
===================================================================
|
|
--- projects/sample/Makefile.llvm.rules (revision 219846)
|
|
+++ projects/sample/Makefile.llvm.rules (working copy)
|
|
@@ -495,9 +495,9 @@
|
|
ifeq ($(HOST_OS),Darwin)
|
|
DARWIN_VERSION := `sw_vers -productVersion`
|
|
# Strip a number like 10.4.7 to 10.4
|
|
- DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
|
|
+ DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]+).*/\1/')
|
|
# Get "4" out of 10.4 for later pieces in the makefile.
|
|
- DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
|
|
+ DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]+).*/\1/')
|
|
|
|
LoadableModuleOptions := -Wl,-flat_namespace -Wl,-undefined,suppress
|
|
SharedLinkOptions := -dynamiclib
|