blob: fadd9c583414f8443537d797114e2c339fdd931f [file] [log] [blame]
Werner Lemberg1639c792006-05-06 16:44:58 +00001This file describes various problems that have been encountered in
2compiling, installing and running FreeType 2. Suggestions for
3additions or other improvements to this file are welcome.
Werner Lemberg764b2512006-04-03 16:42:39 +00004
Werner Lemberg1639c792006-05-06 16:44:58 +00005----------------------------------------------------------------------
Werner Lemberg764b2512006-04-03 16:42:39 +00006
7
8Compilation Problems
9====================
10
11
Werner Lemberg1639c792006-05-06 16:44:58 +000012* I get an `internal compilation error' (ICE) while compiling FreeType
13 2.2.1 with Intel C++.
Werner Lemberg764b2512006-04-03 16:42:39 +000014
15This has been reported for the following compiler version:
16
17 Intel(R) C++ Compiler for 32-bit applications,
18 Version 9.0 Build 20050430Z Package ID: W_CC_P_9.0.019
19
20A solution to this problem is to apply the following patch.
21
22
23--- src/cache/ftcbasic.c 2006-03-20 14:34:23.000000000 +0100
24+++ src/cache/ftcbasic.c.patched 2006-04-03 18:39:28.165346008 +0200
25@@ -266,7 +266,7 @@
26
27
28 FT_CALLBACK_TABLE_DEF
29- const FTC_GCacheClassRec ftc_basic_image_cache_class =
30+ FTC_GCacheClassRec ftc_basic_image_cache_class =
31 {
32 {
33 ftc_inode_new,
34
35
Werner Lemberg1639c792006-05-06 16:44:58 +000036----------------------------------------------------------------------