- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
i am evaluating the jpegcompressioncapability withIPP 4.1. however i encountered an error when running build32.bat in the JPEG-IJL directory. the error shows it cannot find "ippcorel.lib". i checked the evaluation package. obviously ippcorel.lib is not there. is this file only included in the release version? or is there anyway i can build ijl without ippcorel.lib?
thanks in advance.
Link Copied
3 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
you are right, new IJL sample can't be built with evaluation IPP package without some modification. Fortunately they are not so significant.Theonly difference between evaluation and release IPP packages is that evaluation does not contains static libraries. But IJL sample was designed to be linked with static libraries. So, what you need to changeis to modify Makefile to link IJL with IPP DLLs instead of static libs. Of course, in this case youwill be need in IPP DLLs in addidtion to IJL DLL.
Please take a look on to other JPEG sample, JPEGView. It contains other JPEG codec. It is simple one, but it has good performance.
Regards,
Vladimir
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Can you explain the needed modification in the makefile to use the IJL sample with the eval version of IPP.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi
actually it is very easy, even without modification of Makefile. To build IJL with evaluation copy of IPP you need to modify build32.bat:
changethe last line
nmake ARCH=%ARCH% CC=%COMPILER%
to
to
nmake ARCH=%ARCH% CC=%COMPILER% LINKAGE="dynamic"
that's all. Note, in this case IJL DLL will require IPP DLLs at the start (you need to make sure IPP DLLs are available through your PATH environment variable)
Regards,
Vladimir
Message Edited by vdudnik on 02-08-2005 12:36 PM

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page