mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-23 22:00:10 +00:00
Test files (but no test cases yet) for handling Universal files.
llvm-svn: 110893
This commit is contained in:
parent
b0be442408
commit
4512065130
17
lldb/test/macosx/universal/Makefile
Normal file
17
lldb/test/macosx/universal/Makefile
Normal file
@ -0,0 +1,17 @@
|
||||
testit: testit.i386 testit.x86_64
|
||||
lipo -create -o testit testit.i386 testit.x86_64
|
||||
|
||||
testit.i386: testit.i386.o
|
||||
gcc -arch i386 -o testit.i386 testit.i386.o
|
||||
|
||||
testit.x86_64: testit.x86_64.o
|
||||
gcc -arch x86_64 -o testit.x86_64 testit.x86_64.o
|
||||
|
||||
testit.i386.o: main.c
|
||||
gcc -g -O0 -arch i386 -c -o testit.i386.o main.c
|
||||
|
||||
testit.x86_64.o: main.c
|
||||
gcc -g -O0 -arch x86_64 -c -o testit.x86_64.o main.c
|
||||
|
||||
clean:
|
||||
rm -rf testit* *~
|
7
lldb/test/macosx/universal/main.c
Normal file
7
lldb/test/macosx/universal/main.c
Normal file
@ -0,0 +1,7 @@
|
||||
#include <stdio.h>
|
||||
int
|
||||
main (int argc, char **argv)
|
||||
{
|
||||
printf ("Hello there!\n");
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user