Search found 318 matches

by Jan Schlamelcher
Wed, 2018-11-07, 15:41
Forum: DCMTK - Installation
Topic: Error while building DCMTK lib for ANDROID
Replies: 51
Views: 57411

Re: Error while building DCMTK lib for ANDROID

Quoting from the page you linked: ANDROID_STL - the C++ standard library implementation to use. The NDK provides different STL implementations, for example the GNU STL and the multiplatform STLport. So the variable is named ANDROID_STL The HowTo is quite old and not necessarily correct in all regard...
by Jan Schlamelcher
Wed, 2018-11-07, 10:12
Forum: DCMTK - Installation
Topic: Error while building DCMTK lib for ANDROID
Replies: 51
Views: 57411

Re: Error while building DCMTK lib for ANDROID

ashajg wrote:And Can you please tell me the name of That CMAKE variable for ANDROID STANDARD LIBRARY so that I can check if it is set or not?
I will have to look it up. I only think I remember there was one, I'm not even a 100% sure.
by Jan Schlamelcher
Tue, 2018-11-06, 13:56
Forum: DCMTK - Installation
Topic: Error while building DCMTK lib for ANDROID
Replies: 51
Views: 57411

Re: Error while building DCMTK lib for ANDROID

I believe there was a special CMake variable for the Android standard library.
by Jan Schlamelcher
Tue, 2018-11-06, 10:11
Forum: DCMTK - Installation
Topic: Error while building DCMTK lib for ANDROID
Replies: 51
Views: 57411

Re: Error while building DCMTK lib for ANDROID

Well, it seems to build, so using ming32-make seemingly did the trick. I've never seen these errors, might be something you can 'fix' by choosing another standard library (as far as I remember the NDK provides various different C standard library implementations to choose from).
by Jan Schlamelcher
Mon, 2018-11-05, 13:13
Forum: DCMTK - Installation
Topic: Error while building DCMTK lib for ANDROID
Replies: 51
Views: 57411

Re: Error while building DCMTK lib for ANDROID

I would guess that accidentally, the wrong 'make.exe' gets started, perhaps use the full path to the one that came with msys?
by Jan Schlamelcher
Mon, 2018-11-05, 11:58
Forum: DCMTK - Installation
Topic: Error while building DCMTK lib for ANDROID
Replies: 51
Views: 57411

Re: Error while building DCMTK lib for ANDROID

Now that is strange, shared libs implies PIE afaik. Perhaps the executable is cached? Did you re-configure from scratch after enabling PIE?
by Jan Schlamelcher
Tue, 2018-10-30, 17:01
Forum: DCMTK - Installation
Topic: Problem building with OpenSSl support on macOS
Replies: 8
Views: 8385

Re: Problem building with OpenSSl support on macOS

Thanks for inspecting this further. My guess would be that, although you installed an own version of OpenSSL, the one that comes bundled with macOS still has its headers in the default include search paths, leading to the tests #include <openssl/ssl.h> command including an old version of this header...
by Jan Schlamelcher
Tue, 2018-10-30, 10:47
Forum: DCMTK - Installation
Topic: Error while building DCMTK lib for ANDROID
Replies: 51
Views: 57411

Re: Error while building DCMTK lib for ANDROID

It seems to be a configuration issue, e.g. your AVD is not appropriate for the settings you chose Android ABI etc. Quick Google gave me this:
https://stackoverflow.com/questions/379 ... executable
by Jan Schlamelcher
Mon, 2018-10-29, 11:05
Forum: DCMTK - Installation
Topic: Error while building DCMTK lib for ANDROID
Replies: 51
Views: 57411

Re: Error while building DCMTK lib for ANDROID

Well, it seems to me that CMake tries to execute the code locally whereas it should execute in on the emulator.

EDIT: I also added this to our bugtracker regarding the deprecation warning: https://support.dcmtk.org/redmine/issues/851
by Jan Schlamelcher
Fri, 2018-10-26, 07:47
Forum: DCMTK - Installation
Topic: Error while building DCMTK lib for ANDROID
Replies: 51
Views: 57411

Re: Error while building DCMTK lib for ANDROID

Another idea: you could post your output of android list avd so that I can check whether they changed that enough for our parser to no longer understand it.
by Jan Schlamelcher
Thu, 2018-10-25, 18:08
Forum: DCMTK - Installation
Topic: Error while building DCMTK lib for ANDROID
Replies: 51
Views: 57411

Re: Error while building DCMTK lib for ANDROID

That might have an effect, but this would be about the Android toolchain and not DCMTK itself. Google keeps changing how that works from version to version, it's a bit hard to stay up to date.
by Jan Schlamelcher
Thu, 2018-10-25, 10:20
Forum: DCMPRINT
Topic: Horos + DCMPRINT
Replies: 4
Views: 8034

Re: Horos + DCMPRINT

Did you try the verification SOP class; sending an echo request using echoscu?
by Jan Schlamelcher
Tue, 2018-10-16, 08:58
Forum: DCMTK - Installation
Topic: Error while building DCMTK lib for ANDROID
Replies: 51
Views: 57411

Re: Error while building DCMTK lib for ANDROID

Strange, great you found a solution though. My only further Idea would be to look into CMakeError.log in the build directory if you want to try and find out why it fails on your PC.
by Jan Schlamelcher
Mon, 2018-10-15, 10:27
Forum: DCMTK - Installation
Topic: Error while building DCMTK lib for ANDROID
Replies: 51
Views: 57411

Re: Error while building DCMTK lib for ANDROID

I see, well, DCMTK uses the following code to create the list for that combobox: execute_process(COMMAND "${ANDROID_ANDROID_PROGRAM}" list avd RESULT_VARIABLE RESULT OUTPUT_VARIABLE OUTPUT ERROR_QUIET) string(REGEX MATCHALL "Name:[ \t]*[^\r\n]*" ANDROID_AVAILABLE_AVDS ${OUTPUT}) ...
by Jan Schlamelcher
Fri, 2018-10-12, 15:02
Forum: DCMTK - Installation
Topic: Error while building DCMTK lib for ANDROID
Replies: 51
Views: 57411

Re: Error while building DCMTK lib for ANDROID

What version of DCMTK are you using?
Did you create an AVD and it is not listed, or did you simply not create one?