Add the -ldl library option.
authorReid Spencer <rspencer@reidspencer.com>
Fri, 8 Dec 2006 18:58:38 +0000 (18:58 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Fri, 8 Dec 2006 18:58:38 +0000 (18:58 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32369 91177308-0d34-0410-b5e6-96231b3b80d8

utils/findmisopt

index f8099a98dbcbc6a45b042adf607ad4dbf143decf..8ee9cd8c100ed2504e6e73787bf4c5ad326b1be1 100755 (executable)
@@ -61,6 +61,7 @@ optll="$outdir/${name}.opt.ll"
 opts="$outdir/${name}.opt.s"
 optprog="$outdir/${name}.opt"
 optout="$outdir/${name}.opt.out"
+ldflags="-lstdc++ -lm -ldl -lc"
 
 echo "Test Name: $name"
 echo "Unoptimized program: $prog"
@@ -81,7 +82,7 @@ llvm-dis "$bcfile" -o "$ll" -f || exit 1
 
 # Generate the non-optimized program
 llc "$bcfile" -o "$s" -f || exit 1
-gcc "$s" -o "$prog" -lstdc++ -lc -lm || exit 1
+gcc "$s" -o "$prog" $ldflags || exit 1
 
 # Define the list of optimizations to run. This comprises the same set of 
 # optimizations that gccas and gccld run, in the same order.
@@ -96,7 +97,7 @@ function tryit {
   opt $switches_to_use "$bcfile" -o "$optbc" -f || exit
   llvm-dis "$optbc" -o "$optll" -f || exit
   llc "$optbc" -o "$opts" -f || exit
-  gcc "$opts" -o "$optprog" -lstdc++ -lc -lm || exit
+  gcc "$opts" -o "$optprog" $ldflags || exit
   "$prog" $args > "$out" 2>&1
   ex1=$?
   "$optprog" $args > "$optout" 2>&1