Skip to content

Commit

Permalink
Move to Ubuntu 18
Browse files Browse the repository at this point in the history
  • Loading branch information
tcaduser committed Nov 23, 2019
1 parent 7bf337b commit 3118c6d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
@@ -1,5 +1,6 @@

language: cpp
dist: bionic

os:
- linux
Expand Down Expand Up @@ -27,7 +28,7 @@ before_install:

script:
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then
(bash scripts/setup_ubuntu_16.04.sh && cd linux_x86_64_release && make -j2 && make test);
(bash scripts/setup_ubuntu_18.sh && cd linux_x86_64_release && make -j2 && make test);
fi
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then
(bash scripts/setup_osx_anaconda.sh && cd osx_release && make -j2 && make test);
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -3,7 +3,7 @@ PROJECT (SYMDIFF CXX)
OPTION(TCLMAIN "Build with TCL Interpreter" ON)
OPTION(PYTHON3 "Build Python 3 Interpreter" ON)

set (CMAKE_CXX_STANDARD 17)
set (CMAKE_CXX_STANDARD 14)

SET (SUBDIRS
src
Expand Down
12 changes: 6 additions & 6 deletions scripts/setup_ubuntu_16.04.sh → scripts/setup_ubuntu_18.sh
Expand Up @@ -3,12 +3,12 @@
CMAKE="/usr/bin/cmake"
CMAKE_CXX_FLAGS=""
CXX="/usr/bin/g++"
TCL_ARCHIVE="/usr/lib/x86_64-linux-gnu/libtclstub.a"
TCL_INCLUDE="/usr/include/tcl"
TCL_BIN="/usr/bin/tclsh"
PYTHON3_ARCHIVE="/usr/lib/x86_64-linux-gnu/libpython3.5m.so"
PYTHON3_INCLUDE="/usr/include/python3.5m"
PYTHON3_BIN="/usr/bin/python3.5m"
TCL_ARCHIVE="/usr/lib/x86_64-linux-gnu/libtclstub8.5.a"
TCL_INCLUDE="/usr/include/tcl8.5"
TCL_BIN="/usr/bin/tclsh8.5"
PYTHON3_ARCHIVE="/usr/lib/x86_64-linux-gnu/libpython3.6m.so"
PYTHON3_INCLUDE="/usr/include/python3.6m"
PYTHON3_BIN="/usr/bin/python3.6m"
for TYPE in debug release; do
ARCH=`uname -m`
# for ARCH in i386 x86_64; do
Expand Down
1 change: 1 addition & 0 deletions src/engine/Utility.cc
Expand Up @@ -18,6 +18,7 @@ limitations under the License.
#include "EquationObject.hh"

#include <algorithm>
#include <functional>

namespace Eqo {
namespace {
Expand Down

0 comments on commit 3118c6d

Please sign in to comment.