Re: [ft] Fw: Could you help me for debugging FreeType library?

2019-05-03 Thread J Decker
On Fri, May 3, 2019 at 6:14 PM Lawrence D'Oliveiro wrote: > On Fri, 3 May 2019 03:00:25 +, suzuki toshiya wrote: > > > BTW, does cmake have any hardwired database for > > the available flags for each compilers? I can check > > for gcc and clang, but I'm not sure about other > > proprietary

Re: [ft] Fw: Could you help me for debugging FreeType library?

2019-05-03 Thread Lawrence D'Oliveiro
On Fri, 3 May 2019 03:00:25 +, suzuki toshiya wrote: > BTW, does cmake have any hardwired database for > the available flags for each compilers? I can check > for gcc and clang, but I'm not sure about other > proprietary compilers... I thought most C compilers supported at least some small

Re: [ft] Fw: Could you help me for debugging FreeType library?

2019-05-03 Thread suzuki toshiya
BTW, recent macOS does not ship gdb as a part of their SDK anymore, and it seems that they have switched to lldb. are you using gdb? Regards, mpsuzuki suzuki toshiya wrote: > Hi, > > It seems that cmake experts have left FreeType, so I try to respond > you although I'm not an expert. > > The

Re: [ft] Fw: Could you help me for debugging FreeType library?

2019-05-02 Thread suzuki toshiya
Dear Lawrence, > if (NOT CMAKE_BUILD_TYPE MATCHES "Release") > ... set various compiler flags ... > endif() Indeed, indeed, indeed. I guess the definition of appropriate compiler flags for each build type is the responsibility of the author of CMakeLists.txt. BTW, does cmake

Re: [ft] Fw: Could you help me for debugging FreeType library?

2019-05-02 Thread Lawrence D'Oliveiro
On Fri, 3 May 2019 02:11:30 +, suzuki toshiya wrote: > It seems that cmake experts have left FreeType, so I try to respond > you although I'm not an expert. I’ve done a little bit of messing about with CMake. While CMAKE_BUILD_TYPE is a standard variable

Re: [ft] Fw: Could you help me for debugging FreeType library?

2019-05-02 Thread suzuki toshiya
Hi, It seems that cmake experts have left FreeType, so I try to respond you although I'm not an expert. The shortest response would be: "CMakeLists.txt of FreeType does not support Debug build, so your attempt would not work". Nothing to say, the maintainers would welcome the proposal of patch,