Skip to content

Commit

Permalink
[Travis] Don't build with debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Dec 9, 2015
1 parent 70e35ff commit c9423c1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
5 changes: 0 additions & 5 deletions ci/travis/linux/before_install.sh
Expand Up @@ -64,8 +64,3 @@ sudo -H pip install autopep8 # TODO when switching to trusty or above: replace p

#update clang
sudo apt-get install --force-yes llvm-3.7 llvm-3.7-dev clang-3.7 libstdc++-4.9-dev
export CXX="clang++-3.7"
export CC="clang-3.7"

cmake --version
clang --version
8 changes: 6 additions & 2 deletions ci/travis/linux/install.sh
@@ -1,9 +1,13 @@
mkdir build
cd build

export CXX="clang++-3.7"
export CC="clang-3.7"
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DWITH_SERVER=ON \

cmake --version
clang --version

cmake -DWITH_SERVER=ON \
-DWITH_STAGED_PLUGINS=OFF \
-DWITH_GRASS=ON \
-DSUPPRESS_QT_WARNINGS=ON \
Expand Down

4 comments on commit c9423c1

@nyalldawson
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@m-kuhn THANK YOU!

@m-kuhn
Copy link
Member Author

@m-kuhn m-kuhn commented on c9423c1 Dec 9, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Introduced that for debug purposes yesterday...

@nyalldawson
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, so it's not the root cause of this?

@m-kuhn
Copy link
Member Author

@m-kuhn m-kuhn commented on c9423c1 Dec 9, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unfortunately not...

Please sign in to comment.