Official mirror of https://gitlab.freedesktop.org/freetype/freetype
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.4 KiB
52 lines
1.4 KiB
This file describes various problems that have been encountered in |
|
compiling, installing and running FreeType 2. Suggestions for |
|
additions or other improvements to this file are welcome. |
|
|
|
---------------------------------------------------------------------- |
|
|
|
|
|
Compilation Problems |
|
==================== |
|
|
|
|
|
* I get an `internal compilation error' (ICE) while compiling FreeType |
|
2.2.1 with Intel C++. |
|
|
|
This has been reported for the following compiler version: |
|
|
|
Intel(R) C++ Compiler for 32-bit applications, |
|
Version 9.0 Build 20050430Z Package ID: W_CC_P_9.0.019 |
|
|
|
----- |
|
|
|
The best solution is to update the compiler to version |
|
|
|
Intel(R) C++ Compiler for 32-bit applications, |
|
Version 9.1 Build 20060323Z Package ID: W_CC_P_9.1.022 |
|
|
|
or newer. If this isn't feasible, apply the following patch. |
|
|
|
|
|
--- src/cache/ftcbasic.c 20 Mar 2006 12:10:24 -0000 1.20 |
|
+++ src/cache/ftcbasic.c.patched 15 May 2006 02:51:02 -0000 |
|
@@ -252,7 +252,7 @@ |
|
*/ |
|
|
|
FT_CALLBACK_TABLE_DEF |
|
- const FTC_IFamilyClassRec ftc_basic_image_family_class = |
|
+ FTC_IFamilyClassRec ftc_basic_image_family_class = |
|
{ |
|
{ |
|
sizeof ( FTC_BasicFamilyRec ), |
|
@@ -266,7 +266,7 @@ |
|
|
|
|
|
FT_CALLBACK_TABLE_DEF |
|
- const FTC_GCacheClassRec ftc_basic_image_cache_class = |
|
+ FTC_GCacheClassRec ftc_basic_image_cache_class = |
|
{ |
|
{ |
|
ftc_inode_new, |
|
|
|
|
|
----------------------------------------------------------------------
|
|
|