During the overhaul for PIC build, I found that cache subsystem
of FreeType2 is not ready for PIC build, thus the demo programs
doing rasterization (e.g. ftview, ftbench) cannot be built.
Thus I can check if the code is compilable, but cannot check
if the code is working. Maybe most expected direction is the
porting of the cache subsystem for PIC build (even if there is
no real user of it on embedded system), but extending some demo
programs for FreeType2 without cache subsystem would be easier
first step.

# I assume FreeType2 built in PIC mode will work in the operating
# system that PIC mode is NOT required (e.g. Linux). If it's
# misunderstanding, please let me know.

Any comments?

Regards,
mpsuzuki

suzuki toshiya wrote:
> Dear Erik,
> 
> I have made some overhaul for PIC build, and, your patch to
> modify resource fork support for PIC build is applied with
> some coding style changing. Please check whether GIT head
> works on your platform.
> 
> BTW,
> 
> diff --git a/src/base/ftobjs.c b/src/base/ftobjs.c
> index 1a5a327..fc687f5 100644
> --- a/src/base/ftobjs.c
> +++ b/src/base/ftobjs.c
> @@ -4533,7 +4533,9 @@
>       */
>      {
>        FT_UInt      m, n;
> -      const char*  driver_name[] = { "type42", NULL };
> +      const char*  driver_name[2];
> +         driver_name[0] = "type42";
> +         driver_name[1] = NULL;
> 
> 
>        for ( m = 0;
> 
> is not committed yet, because I want to know which linker complains
> about such initialization. If possible, please let me know 1 example
> to be documented in ChangeLog. I'm not saying "there should not be
> such linker", just I want to know 1 example, for good documentation.
> Sorry for troubling you.
> 
> Regards,
> mpsuzuki
> 
> suzuki toshiya wrote:
>> Dear Erik,
>>
>> Sorry for your trouble and thank you for providing a patch,
>> I will check it in this weekend. Please give me a few days.
>>
>> Regards,
>> mpsuzuki
>>
>> Werner LEMBERG wrote:
>>>> The commits in question are both dealing with compilation of
>>>> 'complex' structures and static globals.
>>> Thanks for the patch.  Toshiya-san, can you have a look and take care
>>> of it, please?
>>>
>>>
>>>     Werner


_______________________________________________
Freetype-devel mailing list
Freetype-devel@nongnu.org
https://lists.nongnu.org/mailman/listinfo/freetype-devel

Reply via email to