diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2016-06-04 20:45:18 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2016-06-04 20:45:18 +0200 |
commit | e25d4ea07b09e7e6df61777988c1fc104f0a538e (patch) | |
tree | 67ba1868b8f9f9e6d8d81d023a97760074ead245 /hurd/debugging | |
parent | cf7f797bcbfdd7b466153fe93cb3bb42facf3224 (diff) |
trick to build only libc.so
Diffstat (limited to 'hurd/debugging')
-rw-r--r-- | hurd/debugging/glibc.mdwn | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/hurd/debugging/glibc.mdwn b/hurd/debugging/glibc.mdwn index d3698256..dfc4c1c6 100644 --- a/hurd/debugging/glibc.mdwn +++ b/hurd/debugging/glibc.mdwn @@ -42,11 +42,15 @@ testsuite, use: DEB_BUILD_OPTIONS=nocheck dpkg-buildpackage To save even more build, stop the build after configure has run, and then you -can restart the build of only libc.so with: +can restart the build of only libc.so and libc.a with: cd build-tree/hurd-i386-libc make lib +or of only libc.so with: + + make objdir=$PWD/build-tree/hurd-i386-libc $PWD/build-tree/hurd-i386-libc/libc.so + or of the whole tree with: cd build-tree/hurd-i386-libc |