JuPedSim / jpsreport

Analysis tool
https://www.jupedsim.org/jpsreport_introduction.html
Other
3 stars 9 forks source link

compilation failed #71

Closed chraibi closed 5 years ago

chraibi commented 5 years ago

In Gitlab by @mirakuepper on Mar 22, 2019, 12:47 [origin]

I want to use Method I and therefore tried to update jpsreport (last commit edbf874b78)

cmake .. in /build:

-- JPSREPORT_VERSION: 0.8.4
-- CMAKE_SOURCE_DIR: /Users/mirakuepper/JuPedSim/jpsreport
-- CMAKE_CURRENT_SOURCE_DIR: /Users/mirakuepper/JuPedSim/jpsreport
-- CMAKE_BUILD_TYPE: Release
-- CMAKE_RUNTIME_OUTPUT_DIRECTORY: /Users/mirakuepper/JuPedSim/jpsreport/bin
-- EXECUTABLE_OUTPUT_PATH: /Users/mirakuepper/JuPedSim/jpsreport/bin
-- CMAKE_VERBOSE_MAKEFILE: FALSE
-- BUILD_TESTING: OFF
-- PROCESSOR_COUNT 1
-- Could NOT find OpenMP_CXX (missing: OpenMP_CXX_FLAGS OpenMP_CXX_LIB_NAMES) 
-- Could NOT find OpenMP (missing: OpenMP_CXX_FOUND) 
-- Disabling OpenMP support
-- Release flags: -O3 -DNDEBUG-static
-- Boost version: 1.69.0
-- BOOST FOUND: 1_69
-- Boost_LIBRARY_DIRS: /usr/local/lib
-- Boost_INCLUDE_DIR: /usr/local/include
-- Boost_LIB_VERSION: 1_69
-- Boost_libraries: 
-- Found Python: /usr/local/bin/python3.7  (version: 3.7.2)
-- Configuring done
-- Generating done
-- Build files have been written to: /Users/mirakuepper/JuPedSim/jpsreport/build

make &> make_protocol.log

result: :x: with errors make_protocol.log

chraibi commented 5 years ago

In Gitlab by @chraibi on Mar 22, 2019, 14:32

Try to compile with g++

cmake  -DCMAKE_CXX_COMPILER=g++-8 -DCMAKE_BUILD_TYPE=Debug  ..

If you don't have g++ yet, try to install it

brew install g++

See also snippet

chraibi commented 5 years ago

In Gitlab by @mirakuepper on Mar 25, 2019, 10:16

Thanks. Now it workes!

chraibi commented 5 years ago

In Gitlab by @mirakuepper on Mar 25, 2019, 10:16

closed