From owner-freebsd-embedded@FreeBSD.ORG Sun Oct 20 09:16:35 2013 Return-Path: Delivered-To: freebsd-embedded@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 675D3CA4 for ; Sun, 20 Oct 2013 09:16:35 +0000 (UTC) (envelope-from sven@hazejager.nl) Received: from mail-qa0-f47.google.com (mail-qa0-f47.google.com [209.85.216.47]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2B7B32E56 for ; Sun, 20 Oct 2013 09:16:34 +0000 (UTC) Received: by mail-qa0-f47.google.com with SMTP id k15so1812455qaq.13 for ; Sun, 20 Oct 2013 02:16:28 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:date:message-id:subject:from:to :content-type; bh=85rCNdVHmT0WSnjx9rDVDxK+bf3+6m0EjJtQ4nsUGvo=; b=TvH+EY6FBe/aKqcdbCAAdzNEYm5iz6rcCWpRaL16xzxezYdab03aKzLQ3yaCyOYuhQ juS9NuqwsvqcVps0nAhegN7yysrsaE2TOuDAZlXTG6y6OJfE0EXV42rnoIGIUqLtYSV3 CJ4nkFolq6dhd1yh5HcaQrUy7twDkh+zcQPI+rt8xMnEqGc60Tbt/nv0WLj4pGCjFN8p FJETCneF4EvV1/f6gCQtrAk/53MlNQF2KH/YFz+IVn5xLPI9D/j3ycMtmGFtRFDiyiWB 4fkwPc+Dc7/uRBCuHasyadWTLNqtNHMySi0MT+hzKa80tRUhAL7ev5xFUqga6wmH7eR7 JlVg== X-Gm-Message-State: ALoCoQndQm8mksLhdAWnxPtRgVW8FjwgmKddCxRTj68zFrSF9ktzrdi2rAkElkfCrov7gqS19LJC MIME-Version: 1.0 X-Received: by 10.224.40.138 with SMTP id k10mr15934198qae.67.1382260587946; Sun, 20 Oct 2013 02:16:27 -0700 (PDT) Received: by 10.49.119.130 with HTTP; Sun, 20 Oct 2013 02:16:27 -0700 (PDT) X-Originating-IP: [212.123.177.47] Date: Sun, 20 Oct 2013 11:16:27 +0200 Message-ID: Subject: Install C++ runtime libraries without installing toolchain From: Sven Hazejager To: freebsd-embedded@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-embedded@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Dedicated and Embedded Systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Oct 2013 09:16:35 -0000 All, Is there a way to install the C++ runtime libraries into a NanoBSD images without installing the whole toolchain? My port needs the libc++ and libcxxrt shared libraries. In my NanoBSD script, I have: CONF_INSTALL=' WITHOUT_INSTALLLIB=1 WITHOUT_TOOLCHAIN=1 ' It's the WITHOUT_TOOLCHAIN knob that I would like to not switch on, so I am looking for alternative ways to get the libraries into my image. I am running 11-CURRENT as of last week. Thanks Sven