Re: dg-options after board/cflags

2020-09-02 Thread H.J. Lu
On Wed, Sep 2, 2020 at 8:31 AM Jose E. Marchesi via Gcc-patches wrote: > > > Hi people! > > While adding a bpf-sim.exp to dejagnu, I noticed that the flags in > board/cflags were included in the final compilation line _after_ the > flags in the test's dg-options. > > Since the test options are mor

Re: dg-options after board/cflags

2020-09-02 Thread Jose E. Marchesi
> On Wed, Sep 2, 2020 at 8:31 AM Jose E. Marchesi via Gcc-patches > wrote: >> >> >> Hi people! >> >> While adding a bpf-sim.exp to dejagnu, I noticed that the flags in >> board/cflags were included in the final compilation line _after_ the >> flags in the test's dg-options. >> >> Since the test

Re: [PATCH] Makefile.am: allow slashes in git branches

2020-09-02 Thread Jose E. Marchesi
> Jose E. Marchesi wrote: >> It is way common for git branches to feature slashes in their names. >> This patch modifies a sed invocation in Makefile.am to use a different >> command delimiter. >> > > Are there any characters that are actually not allowed in Git branch > names or do I need to

Development progress announcement: 1.6.3 code freeze

2020-09-02 Thread Jacob Bachmeyer
DejaGnu is currently in the code freeze for the upcoming 1.6.3 release. We (Rob Savoye and I) are working to resolve some minor administrative issues before branching for a release candidate. Patches currently pending will be considered for development towards 1.6.4 or 1.7. -- Jacob

Re: [PATCH] Makefile.am: allow slashes in git branches

2020-09-02 Thread Jacob Bachmeyer
Jose E. Marchesi wrote: It is way common for git branches to feature slashes in their names. This patch modifies a sed invocation in Makefile.am to use a different command delimiter. Are there any characters that are actually not allowed in Git branch names or do I need to revise those comm

dg-options after board/cflags

2020-09-02 Thread Jose E. Marchesi
Hi people! While adding a bpf-sim.exp to dejagnu, I noticed that the flags in board/cflags were included in the final compilation line _after_ the flags in the test's dg-options. Since the test options are more particular than the board options, I would expect them to be placed after any board-

[PATCH] Add bpf-sim.exp

2020-09-02 Thread Jose E. Marchesi
Hi good peoples! This patch adds support for a new board, bpf-sim. Salud! --- ChangeLog | 6 Makefile.am| 1 + Makefile.in| 1 + baseboards/bpf-sim.exp | 64 ++ 4 files changed, 72 insertions(+) create mode 100

[PATCH] Makefile.am: allow slashes in git branches

2020-09-02 Thread Jose E. Marchesi
It is way common for git branches to feature slashes in their names. This patch modifies a sed invocation in Makefile.am to use a different command delimiter. 2020-09-02 Jose E. Marchesi * Makefile.am (install-data-hook): Allow git branches with slashes in their names.