Sign inSign up

beelanl/caliper_demo

By beelanl

Updated about 8 years ago

Caliper compiler for BEE interface testing/demo

Image
0

135

beelanl/caliper_demo repository overview

Update by Paul Bryant on July 6, 2018

Built with this Dockerfile

FROM 	debian

RUN   	apt-get update \
   	&& apt-get install -y openssh-client \
		git g++ gcc make cmake \
		python2.7 python-pip

RUN 	touch /usr/bin/ch-ssh

RUN	git clone https://github.com/LLNL/Caliper.git

WORKDIR /Caliper

RUN	mkdir build && cd build  && \
	cmake -DCMAKE_INSTALL_PREFIX=/ \
		-DCMAKE_C_COMPILER=/usr/bin/gcc \
		-DCMAKE_CXX_COMPILER=/usr/bin/g++ \
		.. \
	&& make \
	&& make install

RUN	rm -rf /Caliper

ENV	LD_LIBRARY_PATH=/usr/lib
ENV	CALIPER_DIR=/usr

# For use with Charliecloud
# ch-run -b source ch-dir -- sh -c \
# 	"export LD_LIBRARY_PATH=/usr/lib && \
#	g++ -o app app.cpp -I /usr/include \
#	 -L /usr/lib -lcaliper

Tag summary

Content type

Image

Digest

Size

242.9 MB

Last updated

about 8 years ago

docker pull beelanl/caliper_demo:ver2