Jérôme Duval

Results 177 comments of Jérôme Duval

it seems the use of compiled perl extensions can be disabled with `--disable-perl-xs`. Have you tried it?

It would nice to drop $secondaryArchSuffix on every cmd: provides. It's very inconvenient to have to specify cmd:clang_x86

it seems clang since at least version 16 generates DT_RUNPATH instead of DT_RPATH. I had to use export LDFLAGS="-Wl,--disable-new-dtags" to have DT_RPATH generated.

> not sure about this one, I see some commits in haiku repo related to rpath and runpath, not sure if anything is needed in this recipe? For r1beta4 some...

> > Also looking at the recipe the patch for clang/lib/Lex/InitHeaderSearch.cpp doesn't do anything anymore as the header path handling was moved to clang/lib/Driver/ToolChains/Haiku.cpp -- Haiku::AddClangSystemIncludeArgs(). This changed with 18....

Did you try to disable writebackups in vim?

fortran isn't a language. I would suggest f77 or f95 (from -x option at https://gcc.gnu.org/onlinedocs/gcc/Overall-Options.html) ``` + %{!,fortran:%{!Wmultichar: -Wno-multichar}} %(cc1_cpu) %{profile:-p}" ``` could be changed to: ``` + %{!,f95:%{!,f77:%{!Wmultichar: -Wno-multichar}}}...

Theorically this would mean to apply for c c++ c-* c++-* objective-c* objective-c++*: ``` + %{,c|,c++|,c-*|,-c++-*|,objective-c*|,objective-c++*:%{!Wmultichar: -Wno-multichar}} %(cc1_cpu) %{profile:-p}" ```

Any reason to not update srcGitRev?

Bump revision is needed I suppose