mirror of
https://github.com/boostorg/histogram.git
synced 2025-05-10 07:14:05 +00:00
11 lines
352 B
Bash
Executable File
11 lines
352 B
Bash
Executable File
#!/bin/sh
|
|
##
|
|
## Copyright 2015-2016 Hans Dembinski
|
|
##
|
|
## Distributed under the Boost Software License, Version 1.0.
|
|
## (See accompanying file LICENSE_1_0.txt
|
|
## or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
cd `dirname $0`
|
|
g++ -std=c++14 -O3 `root-config --cflags` speed_root.cpp `root-config --libs` -lstdc++ -o /tmp/speed_root && /tmp/speed_root
|