S-Lang Interface Package 1.9.5 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News S-Lang Interface Package 1.9.5 (Default branch)
# 1  
Old 09-05-2008
S-Lang Interface Package 1.9.5 (Default branch)

SLIRP is a vectorizing code generator aimed primarily at simplifying the process of creating modules for the S-Lang scripting language. It supports making C, C++, and Fortran code callable directly from the S-Lang interpreter and can automatically vectorize functions to take advantage of the abilities of S-Lang. SLIRP can also generate parallelizable wrappers for OpenMP-aware compilers. License: BSD License (revised) Changes:
A bug in #else clause handling during macro preprocessing has been fixed. Support has been improved for parsing macros with continued lines. Fortran wrappers have been improved. There is better ignoring of C++ comments embedded within C comments. EOF detection when parsing conditional compilation blocks has been improved. The man pages have been enhanced. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. Solaris

/etc/default/init LANG Setting Not Working

Hey guys, I'm setting up a new server(Fujitsu M10-4 / Solaris 10 1/13) to move our app/DB and I'm having trouble figuring out why my LANG setting is not taking effect. I'm trying to set LANG=C in the /etc/default/init file which should make it the default system wide from what I gather. However... (7 Replies)
Discussion started by: kaledragule
7 Replies
Login or Register to Ask a Question
slsh(1) 						      General Commands Manual							   slsh(1)

NAME
slsh -- interperter for S-Lang scripts SYNOPSIS
slsh [-i init-file] [-g] [-n] [-v] [--help] [--version] [-|file args] DESCRIPTION
This manual page documents briefly the slsh command. This manual page was written for the Debian distribution because the original program does not have a manual page. slsh is an interpreter for scripts written in the S-Lang language. OPTIONS
--help Show summary of options --version Show slsh version information -g Compile with debugging code, tracebacks, etc -n Don't load personal init file -i init-file Use this file instead of default -v Show verbose loading messages ENVIRONMENT VARIABLES
Upon startup, the program will try to load slsh.rc as follows: If either SLSH_CONF_DIR or SLSH_LIB_DIR environment variables exist, then look in the corresponding directories for slsh.rc. Otherwise look in: $(prefix)/etc (specified in Makefile) /usr/local/etc/ /usr/local/etc/slsh/ /etc/ /etc/slsh/ The slsh.rc file may load other files from slsh's library directory in the manner described below. Once slsh.rc is loaded, slsh will load $HOME/.slshrc if present. Finally, it will load the script specified on the command line. If the name of the script is ``-'', then it will be read from stdin. When a script loads a file via the built-in ``evalfile'' function or the ``require'' function (autoloaded by slsh.rc), the file is searched for along the SLSH_PATH as specified in the Makefile. An alternate path may be specified by the SLSH_PATH environment variable. The search path may be queried and set during run time via set the get_lib_path and set_lib_path functions, e.g., set_lib_path ("/home/bill/lib/slsh:/usr/share/slsh"); SEE ALSO
Examples of S-Lang scripts can be found in /usr/share/doc/slsh/examples/. AUTHOR
This manual page was written by Rafael Laboissiere <rafael@debian.org> for the Debian system (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 any later version pub- lished by the Free Software Foundation. On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL. slsh(1)