Hi Seguer! Thanks for reviewing :) > @@ -538,6 +539,9 @@ proc check_effective_target_stack_size { } { > if [target_info exists gcc,stack_size] { > return 1 > } > + if [istarget bpf-*-*] { > + return 1 > + } You should still set the proper stack size in your board file, so does this help you at all? > @@ -546,7 +550,11 @@ proc check_effective_target_stack_size { } { > proc dg-effective-target-value { effective_target } { > if { "$effective_target" == "stack_size" } { > if [check_effective_target_stack_size] { > - return [target_info gcc,stack_size] > + if [istarget bpf-*-*] { > + return "512" > + } else { > + return [target_info gcc,stack_size] > + } Yeah okay... Can't you directly override the gcc,stack_size setting, instead of doing that in every(?) place it is checked? Yes I agree these things belong to the board configuration files, so I will remove that ad-hoc logic from the patch.
- Re: [PATCH V2 3/8] bpf: new libgcc port Jeff Law
- Re: [PATCH V2 3/8] bpf: new libgcc port Jose E. Marchesi
- [PATCH V2 1/8] Update config.sub and config.guess. Jose E. Marchesi
- [PATCH V2 7/8] bpf: manual updates for eBPF Jose E. Marchesi
- [PATCH V2 5/8] bpf: make target-supports.exp aware of e... Jose E. Marchesi
- Re: [PATCH V2 5/8] bpf: make target-supports.exp a... Jeff Law
- Re: [PATCH V2 5/8] bpf: make target-supports.e... Jose E. Marchesi
- Re: [PATCH V2 5/8] bpf: make target-supports.exp a... Segher Boessenkool
- Re: [PATCH V2 5/8] bpf: make target-supports.e... Jose E. Marchesi
- [PATCH V2 8/8] bpf: add myself as the maintainer for th... Jose E. Marchesi
- Re: [PATCH V2 8/8] bpf: add myself as the maintain... Jeff Law
- Re: [PATCH V2 8/8] bpf: add myself as the maintain... Segher Boessenkool
- [PATCH V2 6/8] bpf: adjust GCC testsuite to eBPF limita... Jose E. Marchesi
- Re: [PATCH V2 6/8] bpf: adjust GCC testsuite to eB... Jeff Law
- Re: [PATCH V2 6/8] bpf: adjust GCC testsuite t... Segher Boessenkool
- Re: [PATCH V2 6/8] bpf: adjust GCC testsuite t... Jose E. Marchesi
- Re: [PATCH V2 6/8] bpf: adjust GCC testsui... Jeff Law
- Re: [PATCH V2 6/8] bpf: adjust GCC tes... jose . marchesi
- [PATCH V2 4/8] bpf: gcc.target eBPF testsuite Jose E. Marchesi