一个好老好老的老程序员了。
全部博文(915)
分类: 其他平台
2018-08-10 14:54:48
下载地址:https://www.oracle.com/technetwork/server-storage/developerstudio/downloads/index-jsp-141149.html
下载后安装:
解压:Unpack distribution: cd ; bzcat /OracleDeveloperStudio12.6-solaris-x86-pkg.tar.bz2 | /bin/tar -xf –
安装:./install_patches.sh
./developerstudio.sh
第二步:下载dcmtk3.6.3
解压:gzip dcmtk-3.6.3.tar.gz
tar –xvf dcmtk-3.6.3.tar
cd /usr/bin
ln -s CC c++
export CXX=c++
export CC=cc
export AR=/usr/ccs/bin/ar
再进入dcmtk-3.6.3目录
./configure --ignore-deprecation --enable-std-includes --enable-cxx11 --prefix=/opt/dicom
make
make install
最后make install时报当前目录没有install-sh,我们将dcmtk-3.6.3/config/install-sh拷贝到指定目录即可。
Solaris10的find命令不支持maxdepth选项
renxiao20032018-08-15 09:32:24
其中使用支持库如libxml2时,困惑我半天,按照这个链接中博客内容指定的地址下载了支持库后,将其中相应的支持库放入和DCMTK源码同一级目录下,并重命名支持库,将后面的版本号删除,比如libxml2-2.7.1改名为libxml2即可。