Showing posts with label Developer. Show all posts
Showing posts with label Developer. Show all posts
Monday, July 20, 2009
Why use Gambit Scheme for application development?
A discussion from jlongster on Gambit embedded in Objective-C. Some potentially cool stuff here. This discussion was a follow on to mikelevins Heresy article in which Scheme <-> Objective-C interface is also discussed. mikelevins' mention of prefix-dylan is a bonus as well.
Monday, October 6, 2008
Getting Gambit to respect prefix settings at configure
After posting a concern about Gambit inserting an additional "version" directory into the installation path, the following was suggested on the Gambit mailing list and works perfectly. When executing
For me the configure, make, install routine works as follows:
This places the Gambit files in the directories I expect them to be in.
make install
set the PACKAGE_SUBDIR=""
to remove the version number from the installation path.For me the configure, make, install routine works as follows:
$ ./configure --enable-single-host --enable-gcc-opts --prefix=/Users/Shared
$ make install prefix=/usr/local PACKAGE_SUBDIR=""
This places the Gambit files in the directories I expect them to be in.
Thursday, October 2, 2008
Kawa Implementation of Asymmetric Encryption Keys Via KeyPairGenerator
Recreation of Sun's Java example program to create RSA and DSA keys from the command line in Kawa Scheme. The code utilizes the following Kawa functionality: 6.4 Compiling Scheme to a standalone application, 10.4 Calling Java methods from Scheme.
Labels:
Developer,
Encryption,
Java,
Kawa,
Scheme
Building Kawa on OpenBSD
Getting The Kawa language framework to build on OpenBSD is fairly straight forward. You just have to call
gmake
instead of make
.
Subscribe to:
Posts (Atom)