Skip to content

Instantly share code, notes, and snippets.

- The C compiler identification is GNU 6.4.0
-- The CXX compiler identification is GNU 6.4.0
-- Check for working C compiler: /builds/gcc/6.4.0/6359df24a4/bin/cc
-- Check for working C compiler: /builds/gcc/6.4.0/6359df24a4/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /builds/gcc/6.4.0/6359df24a4/bin/c++
-- Check for working CXX compiler: /builds/gcc/6.4.0/6359df24a4/bin/c++ -- works
@FictionIO
FictionIO / CMakeLists.txt
Created August 18, 2017 16:23
CMakeLinkerError
cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
project(MYLIB VERSION ${MYLIB_VERSION} LANGUAGES CXX CUDA)
enable_testing()
# Silence warnings about Compute 2.0 deprecation
add_definitions("-Wno-deprecated-gpu-targets")
# Enable RDC
string(APPEND CMAKE_CUDA_FLAGS " -rdc=true")
travis_fold:start:worker_info
Worker information
hostname: i-0ccabbc-precise-production-2-worker-org-docker.travisci.net:35f18941-dff1-4ffd-a8eb-2674c04d61bd
version: v2.5.0 https://github.com/travis-ci/worker/tree/da3a43228dffc0fcca5a46569ca786b22991979f
instance: ea2ce74:travis:default
startup: 690.24738ms
travis_fold:end:worker_info
travis_fold:start:system_info
Build system information
Build language: cpp
#include "WordGraph.hpp"
WordGraph::WordGraph()
{};
void WordGraph::set( const WordsT & words )
{
if( words.size() > 0 )
{