|
From: Bruno H. <br...@cl...> - 2024-11-18 08:50:06
|
Alexandru Popa wrote:
> When I run:
> *$ : | gcc -E -dM - | grep -i haiku*
> I get:
> *#define __HAIKU__ 1*
That's what we expect.
> But even when I modify *spvw.d* from:
>
> *#ifdef UNIX_HAIKU*
> * " :HAIKU"*
> *#endif*
>
> to:
>
> *#ifdef __HAIKU__*
> * " :HAIKU"*
> *#endif*
>
> I still do not have :HAIKU in **features**. Maybe I do something wrong?
When you run './lisp.run' without any -M option, does *features* then contain
:HAIKU?
- If no, then concentrate the search on the C compiler.
- If yes, then it means that this part of *features* got lost in the .mem
files. Which is the first .mem file that has it lost?
Bruno
|