Search found 3 matches

by michael127001
Thu, 2022-06-09, 17:59
Forum: DCMTK - General
Topic: Static Linking DCMTK
Replies: 5
Views: 2267

Re: Static Linking DCMTK

Also, what does the DCMTK_LINK_STATIC do? DCMTK_LINK_STATIC tries to create truly static DCMTK command line tool binaries, i.e. it calls gcc -static . Such binaries are not ELF binaries anymore and depend on no shared object (i.e. just require a compatible kernel), but unfortunately under Linux the...
by michael127001
Fri, 2022-06-03, 16:22
Forum: DCMTK - General
Topic: Static Linking DCMTK
Replies: 5
Views: 2267

Re: Static Linking DCMTK

Update : Built openjpeg from source to allow static linking then I was able to modify my CmakeLists.txt as such to build statically: #Generated by VisualGDB project wizard.-3.6.7-install/usr/local/lib #Note: VisualGDB will automatically update this file when you add new sources to the project. cmak...
by michael127001
Thu, 2022-06-02, 21:52
Forum: DCMTK - General
Topic: Static Linking DCMTK
Replies: 5
Views: 2267

Static Linking DCMTK

Hi, all: I'm attempting to write my own DcmStorageSCP using DCMTK (latest GitHub source as of 6/2/2022). My server doesn't care about the entire DICOM file though, just a few parameters of it, which the program will save to an XML file. One of the requirements is that the included libraries must be ...