From owner-freebsd-questions Mon Sep 29 01:35:41 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id BAA27517 for questions-outgoing; Mon, 29 Sep 1997 01:35:41 -0700 (PDT) Received: from zwei.siemens.at (zwei.siemens.at [193.81.246.12]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id BAA27510 for ; Mon, 29 Sep 1997 01:35:33 -0700 (PDT) Received: from ws6303-f (root@firix [10.1.143.100]) by zwei.siemens.at with ESMTP id KAA04750; Mon, 29 Sep 1997 10:34:14 +0200 (MET DST) Received: from ws6423.gud.siemens.at (ws6423-f) by ws6303-f with ESMTP (1.40.112.8/16.2) id AA047702019; Mon, 29 Sep 1997 10:33:39 +0200 Received: by ws6423.gud.siemens.at (SMI-8.6/SMI-SVR4) id KAA01832; Mon, 29 Sep 1997 10:32:44 +0200 Date: Mon, 29 Sep 1997 10:32:44 +0200 From: lada@ws6303.gud.siemens.at (marino.ladavac@siemens.at) Message-Id: <199709290832.KAA01832@ws6423.gud.siemens.at> To: questions@FreeBSD.ORG, fbsdlist@federation.addy.com Subject: Re: static or dynamic linking? Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Md5: FMWivjmdihQo8tj2GRTOAQ== Sender: owner-freebsd-questions@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > From owner-freebsd-questions@FreeBSD.ORG Fri Sep 26 22:05:12 MET 1997 > Date: Fri, 26 Sep 1997 15:46:51 -0400 (EDT) > From: Cliff Addy > To: questions@FreeBSD.ORG > Subject: static or dynamic linking? > Mime-Version: 1.0 > X-Loop: FreeBSD.org > > I got this question from a user: > > > Is the OS FreeBSD 2.2.2 statically or dynamically linked? > > How do I answer him? The OS itself (the kernel) is statically linked, but it does support and use loading and unloading subsystems at runtime (so called Loadable Kernel Modules). The apllications (user space executables) can be either statically or dynamically linked. Mixed mode linkage is, naturally, allowed (some libs static, some libs dynamic). Runtime library loading and unloading is also supported. I hope I haven't overseen any possible interpretation of the question. /Marino > >