Developing Platform Independent Software using the AutoTool Suite
|
|
|
- Oscar Moody
- 10 years ago
- Views:
Transcription
1 Developing Platform Independent Software using the AutoTool Suite Jason But Outline Why develop Platform Independent code From the users perspective From the developers perspective The Autotools Suite Automake Autoconf The NAM (Not AutoMake) System Why How to use it
2 Why Platform Independent Code? Most software we develop is likely to be tools to gather or analyse data Smaller Possibly only used by you It may be useful enough to release E.g. pckhisto and netsniff If others use FreeBSD Environment could be configured differently, your Makefile or script might not work Other Platform OSs Linux MacOS X Windows God forbid Why Platform Independent Code? Developing Platform Independent Software The source code Generic Use platform independent libraries Write standards compliant code (for different compilets) Where necessary, group platform dependent code into a small file set so different versions can be compiled in The build environment Locations of tools and libraries Names of tools and libraries Version of make How to install
3 Why Platform Independent Code? Need to distribute a project that Examines the build system and determines if it can build the software Creates a standard means of building and installing the software Typically make, but make differs across platforms Source code written to be able to compile on different platforms and with different compilers Many options but fast becoming standard is the: configure/make/make install cycle The Users Perspective Simplified Download/Compile/Installation Cycle Download and uncompress source code Execute./configure su root make make install Consistent across all platforms and increasingly among distributed software
4 The Users Perspective The configure script scans the system and build a (set of) Makefile(s) specific to the platform under consideration The standard Make tool is then used to compile and install the software Advantages Platform specific instructions are automatically handled User doesn t have to worry about changing compile or install options configure can check for required libraries/software/features and fail with an appropriate error message The Developers Perspective Simplified Support Scenario The same package is compatible with a number of different systems Complex Development How to write the configure script What to check for and how How to generate platform independent Makefiles Maintenance of installation system
5 The Developers Perspective configure must run on all systems have to use a standard scripting language (/bin/sh) Different systems: Have libraries and tools installed in different locations Install your application to different locations Have different Make systems BSD Make is substantially different to GNU Make The Autotools Suite The GNU Autotools suite was developed to help simplify the task of distribution of platform independent code automake autoconf autoheader libtool Of most interest is automake and autoconf, used to generate a system independent configure script which can subsequently be used to generate system independent Makefile(s)
6 Autotools Overview Makefile.am automake Makefile.in configure.(in ac) configure autoconf aclocal.m4 acsite.m4 autoheader config.h.in Makefile config.h The Autotools Suite The concept behind the GNU Autotools suite is a good one: Remove the task of creating system checks and developing system independent build environments from the developer through the use of a simple tool set. But just how good are the individual tools within the suite particularly automake and autoconf
7 Automake Input files Makefile.am List of executables and libraries to build and sources for each target configure.(ac in) Output files List of Makefile.am files to consider List of macros to implement Determination of which rules to include Makefile.in Input for configure script Automake Advantages Makefile.am format is simple and easy to read Don t have to worry about writing a Makefile Supports a large number of different types of targets Disadvantages Difficult to add extra rules as discovered when Kris tried to add support for pre-compiled headers with gcc3.4 Generated Makefile.in files are complex and difficult to follow Final Makefile(s) difficult to read Debugging problems Understanding build process Running make produces ugly output
8 Automake Makefile sample Automake make output sample
9 Autoconf Input files configure.(ac in) List of macros to scan and check on system List of Makefiles to generate aclocal.m4, acsite.m4 Output files Set of M4 macros that can be used in the configure.(ac in) file that are not part of the standard autoconf macro set configure Script to execute to build the Makefile(s) Autoheader Input files same as autoconf Output files config.h.in Used as input when running configure to generate config.h
10 Autoconf Advantages Pre-existing macro set to check for existence of: Tools Programs Libraries Headers M4 Macro language Can put shell script into configure.(ac in) Can be used without automake Disadvantages M4 Macro Language need to learn yet another language Remembering cycle of applications to run to properly regenerate all required files Autoconf configure.in sample
11 Using Autoconf without Automake Need to write our own set of Makefile.in(s) More effort Greater care needed in writing to ensure compatibility Resultant Makefile(s) are as neat or messy as the source Makefile.in templates Not AutoMake (NAM) What is NAM Basically a set of files that implements core build functionality in a way that minimises the effort involved in writing a Makefile.in file Allows use of autoconf without automake AND simple generation of Makefile.in Based in spirit on the WINE setup which uses autoconf but not automake Why NAM Nicer Makefile(s) and make output Re-usable
12 NAM What does it Offer Default targets all, clean, install, uninstall Recursive make in subdirectories C++ compilation Optional clean or verbose output during build Automatic dependency regeneration Automatic rerunning of autoconf and configure if necessary Readable Makefiles Linking or C++ archives and executables Installation of executable in $(prefix)/bin and $(prefix)/sbin Installation of man pages NAM Required Files NAM_rules.mk.in Common build rules Configure generates NAM_rules.mk bsd.mk Contains platform dependencies Included into your Makefiles BSD make specific instructions gnu.mk GNU make specific instructions
13 NAM Template Files configure.in Minimal set of autoconf macros required to generate a NAM compatible project Need to add extra tests and variables as per your project requirements Makefile.in Sample Makefile.in with all possible options for NAM Remove unrequired functionality Add extra and new compile rules Creating NAM projects Easier for a new project Use the template configure.in and Makefile.in files and add to them as the project evolves More complex for an existing project Use the template files and try to port macros from existing configure.in file not automake macros Add rules to Makefile.in as needed Possibly extend NAM_rules.mk.in with new default rule (and submit changes back to me)
14 Example pkthisto Recently converted pkthisto to use NAM Existing package did not compile on FreeBSD 5.3 Used default configure.in template Added tests for libraries and header files used by pkthisto Developed Makefile.in to compile pkthisto Link (and install) a single executable List source files involved Example pkthisto (Makefile.in)
15 Example pkthisto (output) Example netsniff Even though a recent project, netsniff compilation has evolved Initially a single Makefile that built the source with nice output Converted (by Urs) to use autoconf and automake Converted (by me) to use autoconf and NAM More complex Number of subdirectories Temporary archive libraries More autoconf tests to run More configure options enabled
16 Example netsniff (clean output) Example netsniff (verbose output) Output of make VERBOSE=2
17 Using NAM Installing the required files Obtain NAM_rules.mk.in, bsd.mk and gnu.mk and place a copy in the top directory of your project NAM_rules.mk will be generated in the top build directory after running configure Using NAM Writing Makefile.in(s) Obtain the template file Makefile.in and place a copy in the top directory of your project AND in each subdirectory you wish to recursively make The first four lines of the Makefile.in file are mandatory and MUST NOT be commented out or deleted TOPSRCDIR SRCDIR VPATH TOPBUILDDIR =./@top_builddir@
18 Using NAM Writing Makefile.in(s) variables SUBDIRS list of subdirectories for make to recurse into INCLUDES compiler flags to list extra directories to search for included files PROGRAMS list of executables to link ARCHIVES list of temporary library archives (.a) to link xxx_srcs list of C++ source files to compile in order to build program xxx, where xxx is a program in the PROGRAMS or ARCHIVES variable xxx_libs list of libraries to use when linking the program or archive xxx xxx_ldflags linker flags to use when linking the program or archive xxx PRECOMP_HEADER list of header files to compile using precompiled headers (requires gcc3.4+) INSTALL_BIN list of executables to install to $(prefix)/bin INSTALL_SBIN list of executables to install to $(prefix)/sbin INSTALL_MAN list of man pages to install to $(prefix)/man Using NAM Writing Makefile.in(s) Do NOT delete the This includes the rules defined in NAM_rules.mk Add any new and other rules AFTER line Can add extra dependencies for all, clean, install and uninstall targets New targets (all, install, uninstall) with rules will be executed AFTER the default make of these targets Any rules will supercede make all as the default target
19 Using NAM Writing configure.in Do not remove any existing macros from this file Add new macros to test for anything you need where specified in the file Add a list of all Makefiles your project needs to the AC_CONFIG_FILES macro, you MUST ensure that your Makefile(s) are listed AFTER the NAM_rules.mk file already there Otherwise your Makefiles will be generated with the old NAM_rules.mk and will be one configure cycle out of step Using NAM Writing configure.in Source for writing configure.in tests Download the autoconf manual from Autoconf website Google search for help Using the minimal configure.in will not be a problem, it just means that occasionally make will fail where it would be better if configure failed the idea is if configure completed successfully, the system is capable of building the application
20 Conclusions Concept behind the autotools suite is good Autoconf is well implemented, automake is a mess NAM allows use of autoconf and minimal work in writing Makefile.in files NAM takes advantage of a prewritten rule set to minimise work on the build environment Leverage my 8 weeks effort into learning how autoconf works Get readable Makefiles and build output with no effort Easy to use, especially for new projects Make your software development platform independent from the start Lets you run tests at home if you have a different platform (such as Linux or MacOS Lets your software be used by others Questions And the title says it all
GNU Automake. For version 1.15, 31 December 2014. David MacKenzie Tom Tromey Alexandre Duret-Lutz Ralf Wildenhues Stefano Lattarini
GNU Automake For version 1.15, 31 December 2014 David MacKenzie Tom Tromey Alexandre Duret-Lutz Ralf Wildenhues Stefano Lattarini This manual is for GNU Automake (version 1.15, 31 December 2014), a program
Software Development Practices in Project X
Software Development Practices in Project X Todd A. Oliver [email protected] Aerospace Computational Design Lab Massachusetts Institute of Technology April 8, 2005 PX Development Stratagies 1/23 Overview
Building Software Systems. Multi-module C Programs. Example Multi-module C Program. Example Multi-module C Program
Building Software Systems Multi-module C Programs Software systems need to be built / re-built during the development phase if distributed in source code form (change,compile,test,repeat) (assists portability)
CMake/CTest/CDash OSCON 2009
CMake/CTest/CDash OSCON 2009 Open Source Tools to build, test, and install software Bill Hoffman [email protected] Overview Introduce myself and Kitware Automated Testing About CMake Building with
Table of Contents. The RCS MINI HOWTO
Table of Contents The RCS MINI HOWTO...1 Robert Kiesling...1 1. Overview of RCS...1 2. System requirements...1 3. Compiling RCS from Source...1 4. Creating and maintaining archives...1 5. ci(1) and co(1)...1
Expresso Quick Install
Expresso Quick Install 1. Considerations 2. Basic requirements to install 3. Install 4. Expresso set up 5. Registering users 6. Expresso first access 7. Uninstall 8. Reinstall 1. Considerations Before
CMPT 373 Software Development Methods. Building Software. Nick Sumner [email protected] Some materials from Shlomi Fish & Kitware
CMPT 373 Software Development Methods Building Software Nick Sumner [email protected] Some materials from Shlomi Fish & Kitware What does it mean to build software? How many of you know how to build software?
Magento Search Extension TECHNICAL DOCUMENTATION
CHAPTER 1... 3 1. INSTALLING PREREQUISITES AND THE MODULE (APACHE SOLR)... 3 1.1 Installation of the search server... 3 1.2 Configure the search server for usage with the search module... 7 Deploy the
CS197U: A Hands on Introduction to Unix
CS197U: A Hands on Introduction to Unix Lecture 4: My First Linux System J.D. DeVaughn-Brown University of Massachusetts Amherst Department of Computer Science [email protected] 1 Reminders After
Evaluation of the CMT and SCRAM Software Configuration, Build and Release Management Tools
Evaluation of the CMT and SCRAM Software Configuration, Build and Release Management Tools Alex Undrus Brookhaven National Laboratory, USA (ATLAS) Ianna Osborne Northeastern University, Boston, USA (CMS)
Supported platforms & compilers Required software Where to download the packages Geant4 toolkit installation (release 9.6)
Supported platforms & compilers Required software Where to download the packages Geant4 toolkit installation (release 9.6) Configuring the environment manually Using CMake CLHEP full version installation
How to Build an RPM OVERVIEW UNDERSTANDING THE PROCESS OF BUILDING RPMS. Author: Chris Negus Editor: Allison Pranger 09/16/2011
How to Build an RPM Author: Chris Negus Editor: Allison Pranger 09/16/2011 OVERVIEW You have created some software that you want to install on Red Hat Enterprise Linux systems. Now that it is done, the
Eclipse IDE for Embedded AVR Software Development
Eclipse IDE for Embedded AVR Software Development Helsinki University of Technology Jaakko Ala-Paavola February 17th, 2006 Version 0.2 Abstract This document describes how to set up Eclipse based Integrated
Ubuntu, FEAP, and Virtualiza3on. Jonathan Wong Lab Mee3ng 11/08/10
Ubuntu, FEAP, and Virtualiza3on Jonathan Wong Lab Mee3ng 11/08/10 Mo3va3on Compiling and opera3ng FEAP requires knowledge of Unix/ Posix systems Being comfortable using command- line Naviga3ng the file
SpagoBI Tomcat Clustering Using mod_jk and httpd on Centos - In-Memory Session Replication.
SpagoBI Tomcat Clustering Using mod_jk and httpd on Centos - In-Memory Session Replication. In an earlier post we did a basic session based replication, but the session was not redundant. Now we will be
Chapter 1: Getting Started
Chapter 1: Getting Started Every journey begins with a single step, and in ours it's getting to the point where you can compile, link, run, and debug C++ programs. This depends on what operating system
GTk+ and GTkGLExt Build Process for Windows 32- bit
SUNY Geneseo June 15, 2010 GTk+ and GTkGLExt Build Process for Windows 32- bit Using Minimal GNU for Windows (MinGW) and Minimal System (MSYS) Author Advisor : Hieu Quang Tran : Professor Doug Baldwin
How to Write a Simple Makefile
Chapter 1 CHAPTER 1 How to Write a Simple Makefile The mechanics of programming usually follow a fairly simple routine of editing source files, compiling the source into an executable form, and debugging
MatrixSSL Getting Started
MatrixSSL Getting Started TABLE OF CONTENTS 1 OVERVIEW... 3 1.1 Who is this Document For?... 3 2 COMPILING AND TESTING MATRIXSSL... 4 2.1 POSIX Platforms using Makefiles... 4 2.1.1 Preparation... 4 2.1.2
SIM900 Eclipse environment install Application Note_V1.00
SIM900 Eclipse environment install Application Note_V1.00 Document Title: Note Version: V1.00 Date: 2011-01-11 Status: Document Control ID: Edit SIM900_Eclipse_environment_install_Application_Note _V1.01
Streamline Computing Linux Cluster User Training. ( Nottingham University)
1 Streamline Computing Linux Cluster User Training ( Nottingham University) 3 User Training Agenda System Overview System Access Description of Cluster Environment Code Development Job Schedulers Running
Features. The Samhain HIDS. Overview of available features. Rainer Wichmann
Overview of available features November 1, 2011 POSIX (e.g. Linux, *BSD, Solaris 2.x, AIX 5.x, HP-UX 11, and Mac OS X. Windows 2000 / WindowsXP with POSIX emulation (e.g. Cygwin). Please note that this
Code Estimation Tools Directions for a Services Engagement
Code Estimation Tools Directions for a Services Engagement Summary Black Duck software provides two tools to calculate size, number, and category of files in a code base. This information is necessary
Installing F-Secure Anti-Virus (FSAV) Table of Contents. FSAV 8.x and FSLS 7.x End of Life. FSAV 9.x and FSLS 9.x End of Life
Installing F-Secure Anti-Virus (FSAV) Last update: 15 Jul 2015 Please see also the LISTSERV/F-Secure FAQ for further information. Table of Contents FSAV 4.x, 5.x and 7.x End of Life FSAV 8.x and FSLS 7.x
PowerPanel for Linux Software
PowerPanel for Linux Software User s User's Manual PowerPanel Business Edition Rev. 1 2010/08/26 Rev. 1.5.11 2009/09/03 Table of Contents Getting Help 2 Getting the UPS Status... 2 Getting the Daemon Settings...
Site Configuration SETUP GUIDE. Windows Hosts Single Workstation Installation. May08. May 08
Site Configuration SETUP GUIDE Windows Hosts Single Workstation Installation May08 May 08 Copyright 2008 Wind River Systems, Inc. All rights reserved. No part of this publication may be reproduced or transmitted
10 STEPS TO YOUR FIRST QNX PROGRAM. QUICKSTART GUIDE Second Edition
10 STEPS TO YOUR FIRST QNX PROGRAM QUICKSTART GUIDE Second Edition QNX QUICKSTART GUIDE A guide to help you install and configure the QNX Momentics tools and the QNX Neutrino operating system, so you can
NETWORK OPERATING SYSTEMS. By: Waqas Ahmed (C.E.O at Treesol)
NETWORK OPERATING SYSTEMS By: Waqas Ahmed (C.E.O at Treesol) Locating, Finding Installing, Upgrading and Deleting Packages SEARCHING To find a program commands where they are: [root@tecmint ~]# which ls
PaperStream Connect. Setup Guide. Version 1.0.0.0. Copyright Fujitsu
PaperStream Connect Setup Guide Version 1.0.0.0 Copyright Fujitsu 2014 Contents Introduction to PaperStream Connect... 2 Setting up PaperStream Capture to Release to Cloud Services... 3 Selecting a Cloud
Apache 2.0 Installation Guide
Apache 2.0 Installation Guide Ryan Spangler [email protected] http://ceut.uww.edu May 2002 Department of Business Education/ Computer and Network Administration Copyright Ryan Spangler 2002 Table of
Firebird on Linux. Author: Philippe Makowski IBPhoenix Email: [email protected] Licence: Public Documentation License Date: 2011-11-22
Author: Philippe Makowski IBPhoenix Email: [email protected] Licence: Public Documentation License Date: 2011-11-22 How to install Project packages rpm tar.gz Distributions packages Build from sources
Easing embedded Linux software development for SBCs
Page 1 of 5 Printed from: http://www.embedded-computing.com/departments/eclipse/2006/11/ Easing embedded Linux software development for SBCs By Nathan Gustavson and Eric Rossi Most programmers today leaving
RPC and TI-RPC Test Suite Test Plan Document
RPC and TI-RPC Test Suite Test Plan Document Cyril LACABANNE Bull S.A.S. Version 1.3 12 July 2007 Revision history Version Description 1.0 First release 1.1 Several correction on 1, 5, 8, 14 1.2 Add first
How to use PDFlib products with PHP
How to use PDFlib products with PHP Last change: July 13, 2011 Latest PDFlib version covered in this document: 8.0.3 Latest version of this document available at: www.pdflib.com/developer/technical-documentation
Encrypted File Transfer - Customer Testing
Encrypted File Transfer - Customer Testing V1.0 David Wickens McKesson CLASSIFICATION McKesson Technical Guidance Documentation: NOT PROTECTIVELY MARKED VERSION 1.0 SCOPE This guidance document is aimed
Version Control with Subversion and Xcode
Version Control with Subversion and Xcode Author: Mark Szymczyk Last Update: June 21, 2006 This article shows you how to place your source code files under version control using Subversion and Xcode. By
MontaVista Linux 6. Streamlining the Embedded Linux Development Process
MontaVista Linux 6 WHITE PAPER Streamlining the Embedded Linux Development Process Using MontaVista Linux 6 to get the most out of open source software and improve development efficiencies ABSTRACT: The
Sophos Anti-Virus for Linux configuration guide. Product version: 9
Sophos Anti-Virus for Linux configuration guide Product version: 9 Document date: September 2015 Contents 1 About this guide...5 2 About Sophos Anti-Virus for Linux...6 2.1 What Sophos Anti-Virus does...6
Installing (1.8.7) 9/2/2009. 1 Installing jgrasp
1 Installing jgrasp Among all of the jgrasp Tutorials, this one is expected to be the least read. Most users will download the jgrasp self-install file for their system, doubleclick the file, follow the
Capture Pro Software FTP Server System Output
Capture Pro Software FTP Server System Output Overview The Capture Pro Software FTP server will transfer batches and index data (that have been scanned and output to the local PC) to an FTP location accessible
How To Install Storegrid Server On Linux On A Microsoft Ubuntu 7.5 (Amd64) Or Ubuntu (Amd86) (Amd77) (Orchestra) (For Ubuntu) (Permanent) (Powerpoint
StoreGrid Linux Server Installation Guide Before installing StoreGrid as Backup Server (or) Replication Server in your machine, you should install MySQL Server in your machine (or) in any other dedicated
TNM093 Practical Data Visualization and Virtual Reality Laboratory Platform
October 6, 2015 1 Introduction The laboratory exercises in this course are to be conducted in an environment that might not be familiar to many of you. It is based on open source software. We use an open
Getting Started With Halo for Windows
Getting Started With Halo for Windows For CloudPassage Halo Protecting your Windows servers in a public or private cloud is much easier and more secure with CloudPassage Halo for Windows. Halo for Windows
A Tool for Evaluation and Optimization of Web Application Performance
A Tool for Evaluation and Optimization of Web Application Performance Tomáš Černý 1 [email protected] Michael J. Donahoo 2 [email protected] Abstract: One of the main goals of web application
Building and Using a Cross Development Tool Chain
Building and Using a Cross Development Tool Chain Robert Schiele [email protected] Abstract 1 Motivation 1.1 Unix Standard System Installations When building ready-to-run applications from source,
TIPS & TRICKS JOHN STEVENSON
TIPS & TRICKS Tips and Tricks Workspaces Windows and Views Projects Sharing Projects Source Control Editor Tips Debugging Debug Options Debugging Without a Project Graphs Using Eclipse Plug-ins Use Multiple
Project Builder for Java. (Legacy)
Project Builder for Java (Legacy) Contents Introduction to Project Builder for Java 8 Organization of This Document 8 See Also 9 Application Development 10 The Tool Template 12 The Swing Application Template
Cygwin: getting the setup tool
Cygwin: getting the setup tool Free, almost complete UNIX environment emulation for computers running MS Windows. Very handy. 1 First, go to the Cygwin Site: http://www.cygwin.org/cygwin/ Download the
MapGuide Open Source Repository Management Back up, restore, and recover your resource repository.
MapGuide Open Source Repository Management Back up, restore, and recover your resource repository. Page 1 of 5 Table of Contents 1. Introduction...3 2. Supporting Utility...3 3. Backup...4 3.1 Offline
Creating OpenGL applications that use GLUT
Licenciatura em Engenharia Informática e de Computadores Computação Gráfica Creating OpenGL applications that use GLUT Short guide to creating OpenGL applications in Windows and Mac OSX Contents Obtaining
FreeBSD 8, ipfw and OpenVPN 2.1 server (bridged mode)
FreeBSD 8, ipfw and OpenVPN 2.1 server (bridged mode) Tomaž Muraus ([email protected] / @KamiSLO) October 2009 1. Table of contents 1. Table of contents...2 2. Introduction...3 3. The setup...4 4. The
VERSION 9.02 INSTALLATION GUIDE. www.pacifictimesheet.com
VERSION 9.02 INSTALLATION GUIDE www.pacifictimesheet.com PACIFIC TIMESHEET INSTALLATION GUIDE INTRODUCTION... 4 BUNDLED SOFTWARE... 4 LICENSE KEY... 4 SYSTEM REQUIREMENTS... 5 INSTALLING PACIFIC TIMESHEET
Code::Blocks Student Manual
Code::Blocks Student Manual Lawrence Goetz, Network Administrator Yedidyah Langsam, Professor and Theodore Raphan, Distinguished Professor Dept. of Computer and Information Science Brooklyn College of
IEEEXTREME PROGRAMMING COMPETITION PROBLEM & INSTRUCTION BOOKLET #3
IEEEXTREME PROGRAMMING COMPETITION 2008 PROBLEM & INSTRUCTION BOOKLET #3 Instructions Read all the problems carefully. Each of the problems has a problem number (shown on top), a title, an approximate
Q N X S O F T W A R E D E V E L O P M E N T P L A T F O R M v 6. 4. 10 Steps to Developing a QNX Program Quickstart Guide
Q N X S O F T W A R E D E V E L O P M E N T P L A T F O R M v 6. 4 10 Steps to Developing a QNX Program Quickstart Guide 2008, QNX Software Systems GmbH & Co. KG. A Harman International Company. All rights
Main Bullet #1 Main Bullet #2 Main Bullet #3
Main Bullet #1 Main Bullet #2 Main Bullet #3 : a bag of chips or all that? :A highlevelcrossplatformpowerfullyfunapplication andorsmallusefultooldevelopmentlanguage Why? Main Bullet #1 Main Bullet Vas
Jive Connects for Microsoft SharePoint: Troubleshooting Tips
Jive Connects for Microsoft SharePoint: Troubleshooting Tips Contents Troubleshooting Tips... 3 Generic Troubleshooting... 3 SharePoint logs...3 IIS Logs...3 Advanced Network Monitoring... 4 List Widget
Meister Going Beyond Maven
Meister Going Beyond Maven A technical whitepaper comparing OpenMake Meister and Apache Maven OpenMake Software 312.440.9545 800.359.8049 Winners of the 2009 Jolt Award Introduction There are many similarities
Installing Magento Extensions
to Installing Magento Extensions by Welcome This best practice guide contains universal instructions for a smooth, trouble free installation of any Magento extension - whether by Fooman or another developer,
Python for Series 60 Platform
F O R U M N O K I A Getting Started with Python for Series 60 Platform Version 1.2; September 28, 2005 Python for Series 60 Platform Copyright 2005 Nokia Corporation. All rights reserved. Nokia and Nokia
Freescale Semiconductor, I
nc. Application Note 6/2002 8-Bit Software Development Kit By Jiri Ryba Introduction 8-Bit SDK Overview This application note describes the features and advantages of the 8-bit SDK (software development
The Asterope compute cluster
The Asterope compute cluster ÅA has a small cluster named asterope.abo.fi with 8 compute nodes Each node has 2 Intel Xeon X5650 processors (6-core) with a total of 24 GB RAM 2 NVIDIA Tesla M2050 GPGPU
SEER-HD Database Administrator s Guide
SEER-HD Database Administrator s Guide Rev. April 30, 2010-1 - Contents Introduction... 3 How SEER-HD Works... 4 Interaction of SEER-HD with Other SEER Programs... 5 Database Platforms... 6 Getting Started...
ML310 Creating a VxWorks BSP and System Image for the Base XPS Design
ML310 Creating a VxWorks BSP and System Image for the Base XPS Design Note: Screen shots in this acrobat file appear best when Acrobat Magnification is set to 133.3% Outline Software Requirements Software
SSL Tunnels. Introduction
SSL Tunnels Introduction As you probably know, SSL protects data communications by encrypting all data exchanged between a client and a server using cryptographic algorithms. This makes it very difficult,
Version Control with. Ben Morgan
Version Control with Ben Morgan Developer Workflow Log what we did: Add foo support Edit Sources Add Files Compile and Test Logbook ======= 1. Initial version Logbook ======= 1. Initial version 2. Remove
USER GUIDE. Snow Inventory Client for Unix Version 1.1.03 Release date 2015-04-29 Document date 2015-05-20
USER GUIDE Product Snow Inventory Client for Unix Version 1.1.03 Release date 2015-04-29 Document date 2015-05-20 CONTENT ABOUT THIS DOCUMENT... 3 OVERVIEW... 3 OPERATING SYSTEMS SUPPORTED... 3 PREREQUISITES...
Upgrading a Microsoft Dynamics NAV 2009 R2 or Microsoft Dynamics NAV 2009 SP1 Database to Microsoft Dynamics NAV 2015
Upgrading a Microsoft Dynamics NAV 2009 R2 or Microsoft Dynamics NAV 2009 SP1 Database to Microsoft Dynamics NAV 2015 White Paper November 2014 Contents Introduction... 3 Data Upgrade Short Overview...
ControlMaestro Upgrade guide
ControlMaestro Upgrade guide From Wizcon to ControlMaestro Version: CM2013 v1.0 Date: 4th July 2013 Redactor: Yves Brunel Validation: Didier Pedreno Table of Contents 1 BEFORE UPGRADING THE APPLICATION...3
Monitoring Clearswift Gateways with SCOM
Technical Guide Version 01 28/11/2014 Documentation Information File Name Document Author Document Filename Monitoring the gateways with _v1.docx Iván Blesa Monitoring the gateways with _v1.docx Issue
Installing IBM Websphere Application Server 7 and 8 on OS4 Enterprise Linux
Installing IBM Websphere Application Server 7 and 8 on OS4 Enterprise Linux By the OS4 Documentation Team Prepared by Roberto J Dohnert Copyright 2013, PC/OpenSystems LLC This whitepaper describes how
LAE 4.6.0 Enterprise Server Installation Guide
LAE 4.6.0 Enterprise Server Installation Guide 2013 Lavastorm Analytics, Inc. Rev 01/2013 Contents Introduction... 3 Installing the LAE Server on UNIX... 3 Pre-Installation Steps... 3 1. Third-Party Software...
Nios II Software Developer s Handbook
Nios II Software Developer s Handbook Nios II Software Developer s Handbook 101 Innovation Drive San Jose, CA 95134 www.altera.com NII5V2-13.1 2014 Altera Corporation. All rights reserved. ALTERA, ARRIA,
Using Subversion in Computer Science
School of Computer Science 1 Using Subversion in Computer Science Last modified July 28, 2006 Starting from semester two, the School is adopting the increasingly popular SVN system for management of student
Introduction CMake Language Specific cases. CMake Tutorial. How to setup your C/C++ projects? Luis Díaz Más. http://plagatux.es.
How to setup your C/C++ projects? http://plagatux.es November, 2012 Outline Introduction 1 Introduction 2 Concepts Scripting CPack 3 Qt libraries Cross-compiling Introduction System for configuring C/C++
Waspmote IDE. User Guide
Waspmote IDE User Guide Index Document Version: v4.1-01/2014 Libelium Comunicaciones Distribuidas S.L. INDEX 1. Introduction... 3 1.1. New features...3 1.2. Other notes...3 2. Installation... 4 2.1. Windows...4
An Embedded Wireless Mini-Server with Database Support
An Embedded Wireless Mini-Server with Database Support Hungchi Chang, Sy-Yen Kuo and Yennun Huang Department of Electrical Engineering National Taiwan University Taipei, Taiwan, R.O.C. Abstract Due to
Sawmill Log Analyzer Best Practices!! Page 1 of 6. Sawmill Log Analyzer Best Practices
Sawmill Log Analyzer Best Practices!! Page 1 of 6 Sawmill Log Analyzer Best Practices! Sawmill Log Analyzer Best Practices!! Page 2 of 6 This document describes best practices for the Sawmill universal
Building a cross-platform C library
Building a cross-platform C library Presented by developerworks, your source for great tutorials Table of Contents If you're viewing this document online, you can click any of the topics below to link
Capture Pro Software FTP Server Output Format
Capture Pro Software FTP Server Output Format Overview The Capture Pro Software FTP server will transfer batches and index data (that have been scanned and output to the local PC) to an FTP location accessible
Sonatype CLM Enforcement Points - Continuous Integration (CI) Sonatype CLM Enforcement Points - Continuous Integration (CI)
Sonatype CLM Enforcement Points - Continuous Integration (CI) i Sonatype CLM Enforcement Points - Continuous Integration (CI) Sonatype CLM Enforcement Points - Continuous Integration (CI) ii Contents 1
SendMIME Pro Installation & Users Guide
www.sendmime.com SendMIME Pro Installation & Users Guide Copyright 2002 SendMIME Software, All Rights Reserved. 6 Greer Street, Stittsville, Ontario Canada K2S 1H8 Phone: 613-831-4023 System Requirements
Sophos Anti-Virus for Linux user manual
Sophos Anti-Virus for Linux user manual Product version: 7 Document date: January 2011 Contents 1 About this manual...3 2 About Sophos Anti-Virus for Linux...4 3 On-access scanning...7 4 On-demand scanning...10
Embedded Based Web Server for CMS and Automation System
Embedded Based Web Server for CMS and Automation System ISSN: 2278 909X All Rights Reserved 2014 IJARECE 1073 ABSTRACT This research deals with designing a Embedded Based Web Server for CMS and Automation
32-bit AVR UC3 Microcontrollers. 32-bit AtmelAVR Application Note. AVR32769: How to Compile the standalone AVR32 Software Framework in AVR32 Studio V2
AVR32769: How to Compile the standalone AVR32 Software Framework in AVR32 Studio V2 1. Introduction The purpose of this application note is to show how to compile any of the application and driver examples
WebAmoeba Ticket System Documentation
WebAmoeba Ticket System Documentation Documentation (Stable 2.0.0) webamoeba.co.uk What s New? Version 2 brings some major new features to WATS. Version 2 has been redesigned and coded from the ground
FreeBSD Developer Summit TrustedBSD: Audit + priv(9)
FreeBSD Developer Summit TrustedBSD: Audit + priv(9) Robert Watson FreeBSD Project Computer Laboratory University of Cambridge TrustedBSD Audit Quick audit tutorial Adding audit support to new kernel features
Penetration Testing Lab. Reconnaissance and Mapping Using Samurai-2.0
Penetration Testing Lab Reconnaissance and Mapping Using Samurai-2.0 Notes: 1. Be careful about running most of these tools against machines without permission. Even the poorest intrusion detection system
Automating the deployment of FreeBSD & PC-BSD systems. BSDCan 2013. Kris Moore PC-BSD / ixsystems [email protected]
Automating the deployment of FreeBSD & PC-BSD systems BSDCan 2013 Kris Moore PC-BSD / ixsystems [email protected] The problem: You want to (quickly) deploy multiple FreeBSD or PC-BSD systems. You like what
INSTALL NOTES Elements Environments Windows 95 Users
NEURON DATA INSTALL NOTES Elements Environments Windows 95 Users Modifying Environment Variables You must modify the environment variables of your system to be able to compile and run Elements Environment
