Re: GItlab search

2022-09-26 Thread Ben Gamari
Simon Peyton Jones  writes:

> Friends
>
> I'm struggling with GitLab search.
>
> eg I was looking for #22200
>
> I wen to https://gitlab.haskell.org/ghc/ghc/-/issues, and put "-DEEBUG" and
> "slow" in the search box.  No #22200.  Yet both of those strings appear in
> the title of the ticket.
>
Oh dear, indeed. The problem is that GitLab paused indexing due to a
version incompatibility. I have fixed the issue and unpaused the
indexer.

Searching for '"-DDEBUG" slow' now turns up #22200 as the first result.

Cheers,

- Ben


signature.asc
Description: PGP signature
___
ghc-devs mailing list
ghc-devs@haskell.org
http://mail.haskell.org/cgi-bin/mailman/listinfo/ghc-devs


GItlab search

2022-09-26 Thread Simon Peyton Jones
Friends

I'm struggling with GitLab search.

eg I was looking for #22200

I wen to https://gitlab.haskell.org/ghc/ghc/-/issues, and put "-DEEBUG" and
"slow" in the search box.  No #22200.  Yet both of those strings appear in
the title of the ticket.

Looking for DEBUG or *DEBUG also fails. I find that DDEBUG succeeds.  What
are the rules?

Thanks

Simon
___
ghc-devs mailing list
ghc-devs@haskell.org
http://mail.haskell.org/cgi-bin/mailman/listinfo/ghc-devs


Warnings in RTS

2022-09-26 Thread Simon Peyton Jones
Whenever I compile the RTS I get these warnings.  Are they necessary?

Simon

In file included from rts/Schedule.c:16:0: error:
rts/Schedule.c: In function ‘schedule’:

rts/Schedule.h:143:1: error:
 warning: inlining failed in call to ‘appendToRunQueue’: call is
unlikely and code size would grow [-Winline]
  143 | appendToRunQueue (Capability *cap, StgTSO *tso)
  | ^~~~
|
143 | appendToRunQueue (Capability *cap, StgTSO *tso)
| ^

rts/Schedule.c:1226:9: error:
 note: called from here
 1226 | appendToRunQueue(cap,t);
  | ^~~
 |
1226 | appendToRunQueue(cap,t);
 | ^

In file included from rts/Schedule.c:16:0: error:

rts/Schedule.h:164:1: error:
 warning: inlining failed in call to ‘pushOnRunQueue’: call is unlikely
and code size would grow [-Winline]
  164 | pushOnRunQueue (Capability *cap, StgTSO *tso)
  | ^~
|
164 | pushOnRunQueue (Capability *cap, StgTSO *tso)
| ^

rts/Schedule.c:1228:9: error:
 note: called from here
 1228 | pushOnRunQueue(cap,t);
  | ^
 |
1228 | pushOnRunQueue(cap,t);
 | ^
rts/Schedule.c: At top level:
cc1: warning: unrecognized command line option
‘-Wno-nonportable-include-path’
___
ghc-devs mailing list
ghc-devs@haskell.org
http://mail.haskell.org/cgi-bin/mailman/listinfo/ghc-devs