UG4 / ugcore

The core functionality of UG4. Includes sources, build-scripts, and utility scripts.
https://github.com/UG4/ugcore
Other
36 stars 23 forks source link

Compiling ugcore without plugins fails #5

Closed miho closed 8 years ago

miho commented 8 years ago

When compiling ug4 via:

ughub/ughub init
ughub/ughub install ugcore
mkdir build && cd build && cmake ../ -DTARGET=ugshell

The following error message is shown (on Linux and OS X with CMake 3.x):

-- Info: Enabled plugins:
-- Info: Disabled plugins:
-- 
-- Hint: To enable/disable a plugin 'PLUGIN_NAME' use the cmake option: -DPLUGIN_NAME=ON/OFF
CMake Error at ugcore/cmake/plugin_registration_routines.cmake:165 (list):
  list index: 0 out of range (-0, 18446744073709551615)
Call Stack (most recent call first):
  ugcore/CMakeLists.txt:72 (AddActivePluginSubdirectories)

CMake Warning at ugcore/cmake/plugin_registration_routines.cmake:166 (if):
  given arguments:

    "STREQUAL" "ON"

  Unknown arguments specified
Call Stack (most recent call first):
  ugcore/CMakeLists.txt:72 (AddActivePluginSubdirectories)

CMake Error at ugcore/cmake/plugin_registration_routines.cmake:165 (list):
  list index: -1 out of range (-0, 18446744073709551615)
Call Stack (most recent call first):
  ugcore/CMakeLists.txt:72 (AddActivePluginSubdirectories)

CMake Warning at ugcore/cmake/plugin_registration_routines.cmake:166 (if):
  given arguments:

    "STREQUAL" "ON"

  Unknown arguments specified
Call Stack (most recent call first):
  ugcore/CMakeLists.txt:72 (AddActivePluginSubdirectories)

-- 
-- Info: SHELLTYPE: linenoise (options are: linenoise, readline, simple)
-- 
-- Configuring incomplete, errors occurred!

The command "mkdir build && cd build && cmake ../ -DTARGET=ugshell -DLAPACK=OFF -DBLAS=OFF -DDIM="1;2;3" -DCOMPILE_INFO=OFF" failed and exited with 1 during .

Your build has been stopped.
sreiter commented 8 years ago

Thanks, I will have a look at it.