Skip to content

Commit

Permalink
Build both x86 and amd64 in the test script.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Sep 23, 2009
1 parent 9711e93 commit 4bd7f62
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/test.sh
Expand Up @@ -53,12 +53,14 @@ objdump -x ./hello.so
objdump -x ./hello-dlopen

# Link directly against a FatELF shared library (binutils test).
gcc -O0 -ggdb3 -o hello-fatlink ../hello.c hello.so -Wl,-rpath,.
gcc -m64 -O0 -ggdb3 -o hello-fatlink-amd64 ../hello.c hello.so -Wl,-rpath,.
gcc -m32 -O0 -ggdb3 -o hello-fatlink-x86 ../hello.c hello.so -Wl,-rpath,.

# and, you know...run the programs themselves (glibc, kernel tests).
./hello
./hello-dlopen
./hello-fatlink
./hello-fatlink-amd64
./hello-fatlink-x86

# end of test.sh ...

0 comments on commit 4bd7f62

Please sign in to comment.