Navigation


source: VirtualTestbed/scripts/circum-install.sh @ 14:fef572dfbd43

Last change on this file since 14:fef572dfbd43 was 14:fef572dfbd43, checked in by Sebastien Decugis <sdecugis@nict.go.jp>, 2 years ago

Tested new netemul & send delay

  • Property exe set to *
File size: 522 bytes
Line 
1#!/bin/bash -x
2
3# Install dependencies
4aptitude install -y autoconf automake libtool pkg-config build-essential \
5  git-core libhx-dev libpcre3-dev libxml2-dev libssl-dev \
6  apache2-dev libpam-dev gdb
7
8# Install the link to the configuration
9/home/aaa/installvm.sh conflink
10
11# Build circum
12rm -rf /root/circum
13rm -rf /root/circum-rt
14cd /root
15git clone file:///home/aaa/src/circum
16mkdir circum-rt
17cd circum
18./autogen.sh
19./configure --prefix=/root/circum-rt CFLAGS="-O0 -ggdb3" CXXFLAGS="-O0 -ggdb3"
20make && make install
21
22
Note: See TracBrowser for help on using the repository browser.