diff options
Diffstat (limited to 'make/lib/make-library.sh')
-rw-r--r-- | make/lib/make-library.sh | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/make/lib/make-library.sh b/make/lib/make-library.sh new file mode 100644 index 000000000000..a486a7bf740c --- /dev/null +++ b/make/lib/make-library.sh @@ -0,0 +1,28 @@ +. $stdenv/setup + +objs= +for i in $objects; do + obj=$(echo $i/*.o) + objs="$objs $obj" +done + +echo "archiving object files into library \`$libraryName'..." + +ensureDir $out + +if test -z "$sharedLib"; then + + outPath=$out/lib${libraryName}.a + + ar crs $outPath $objs + ranlib $outPath + +else + + outPath=$out/lib${libraryName}.so + + gcc -shared -o $outPath $objs + +fi + + |