Test files (but no test cases yet) for handling Universal files.

llvm-svn: 110893
This commit is contained in:
Jim Ingham 2010-08-12 01:21:40 +00:00
parent b0be442408
commit 4512065130
2 changed files with 24 additions and 0 deletions

View 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* *~

View File

@ -0,0 +1,7 @@
#include <stdio.h>
int
main (int argc, char **argv)
{
printf ("Hello there!\n");
return 0;
}