The Racket repository
![]() The `--enable-natipkg` configuration option adds "-natipkg" to the platform library subpath. The suffix is intended to trigger the installation of packages that supply native libraries for supported platforms (where 64-bit Linux is the supported platform, for now, for main-distribution packages), instead of relying on libraries installed via the OS's package manager. The intended client for "-natipkg" is the package-build service, where installing packages via the OS package manager would require network access and either trust or constrained installations. The build machine is intentionally disconnected from the network and can only access Racket packages, so repackaging native libraries as Racket packages makes those libraries accessible. A disadvantage of this approach to installing native libraries is that it creates work for implementers of packages that access native libraries. Those implementers will have to supply packages for 64-bit Linux versions of native libraries to the degree needed to build and (eventually) test the package. An advantage of the approach is that it requires no changes to the package system; it will be cheap to replace this approach if we find a better way to deal with native libraries and/or OS packages in the package-build service. |
||
---|---|---|
native-pkgs@2f116c1b64 | ||
pkgs | ||
racket | ||
.gitattributes | ||
.gitignore | ||
.gitmodules | ||
.mailmap | ||
.travis.yml | ||
INSTALL.txt | ||
Makefile | ||
README.txt |
This is the source code for the main Racket distribution. See "INSTALL.txt" for information on building Racket. License ------- Racket Copyright (c) 2010-2014 PLT Design Inc. Racket is distributed under the GNU Lesser General Public License (LGPL). This means that you can link Racket into proprietary applications, provided you follow the rules stated in the LGPL. You can also modify Racket; if you distribute a modified version, you must distribute it under the terms of the LGPL, which in particular means that you must release the source code for the modified software. See racket/src/COPYING_LESSER.txt for more information.