Displaying 3 results from an estimated 3 matches for "oneo".
Did you mean:
one
2011 Oct 05
3
R CMD check
Dear R-Group,
I have a function that sorts a data frame and oneo of the lines in the
function is:
vars <- unlist(strsplit(formc, "[\\+\\-]"))
The function works fine and the above line is always reached. However, when I
include the function in a package and run "R CMD check pkgname" it gives this
error message:
'\+' is an unr...
2013 Mar 07
0
[LLVMdev] ARM assembler's syntax in clang
...PUSH {lr}
@LDR r0,[PC,#2]
.long _data_table
POP {pc}
//==end use_table.s==
//==begin Makefile==
CC = /Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
CFLAG = -arch armv7 -mcpu=cortex-a9 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/iPh
oneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk
all:libtest.dylib
libtest.dylib:table.o use_table.o
$(CC) -v -dynamiclib $(CFLAG) $^ -o $@
table.o:table.c
$(CC) -c $(CFLAG) $^ -o $@
use_table.o:use_table.s
$(CC) -c -integrated-as $(CFLAG) $^ -o $@
clean:
rm *.o libtest.d...
2013 Mar 06
3
[LLVMdev] ARM assembler's syntax in clang
...x .req r1
clang give error: redefinition of 'px' does not match original.
3 .end
clang also doesn't recognize .end directive
all my code is compiled by: clang -arch armv7 -v -integrated-as -g -mcpu=cortex-a9 -mfpu=neon -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk/
my clang version is: Apple LLVM version 4.2 (clang-425.0.24) (based on LLVM 3.2svn)
BTW, could any tell me which files implement integrated-as in clang source code, I think it may also help me by looking the source code(I've tried 'grep', but...