[ACTIVITY] Week 3

2015-08-31 Thread Yvan Roux
o 3 days off (6/10)

== Progress ==

o Linaro GCC validation (3/10)
   * Reviewed, validated and committed on-going backports
   * backported more revisions

o Misc (1/10)
   * Various meetings

== Plan ==
o Continue backports/validation
___
linaro-toolchain mailing list
linaro-toolchain@lists.linaro.org
https://lists.linaro.org/mailman/listinfo/linaro-toolchain


[ACTIVITY] 17 - 21 August 2015

2015-08-31 Thread Omair Javaid
== Progress ==

LLDB development
 -- Testing and bug fixing lldb on hikey AArch64 [TCWG-886] [2/10]
 -- Looked into watchpoint tests which are still failing after
committing watchpoint support and bug fixes.
 -- Modifications to arm hardware breakpoint and watchpoint support
[TCWG-770] [TCWG-794] [7/10]
 -- Resubmitted the pending patch http://reviews.llvm.org/D9703
 -- Testing on chromebook with precise chroot works.

Miscellaneous [1/10]
-- Meetings, emails, discussions etc.
-- Looking into slow data transfer issues on chromebook and highkey board

== Plan ==

LLDB development
 -- Get patches reviewed and committ them.
 -- Continue looking into tests which are still failing on Arm and AArch64
 -- Run test comparison between linux x86, android arm and linux arm
___
linaro-toolchain mailing list
linaro-toolchain@lists.linaro.org
https://lists.linaro.org/mailman/listinfo/linaro-toolchain


[ACTIVITY] 24 - 28 August 2015

2015-08-31 Thread Omair Javaid
== Progress ==

LLDB development
 -- Testing and bug fixing lldb on hikey AArch64 [TCWG-886] [7/10]
 -- Improve error handling of AArch64 watchpoint code. Submitted,
got reviewed and committed http://reviews.llvm.org/D12328
 -- Looked into ways to improve watchpoint installation lag.
 -- Looked into issues pertaining to un-alligned watchpoints installation.
 -- Committed upstream arm hardware breakpoint and watchpoint support
[TCWG-770] [TCWG-794] [1/10]
 -- Ran lldb testsuite in various combinations to figure out Arm and
AArch64 status [1/10]
 -- Testing on chromebook with precise chroot works.

Miscellaneous [1/10]
-- Meetings, emails, discussions etc.

== Plan ==

LLDB development
 -- Try to find ways to debug lldb-server platform forked gdbserver instance.
 -- Test, debug and fix testsuite failures on Arm and AArch64.
___
linaro-toolchain mailing list
linaro-toolchain@lists.linaro.org
https://lists.linaro.org/mailman/listinfo/linaro-toolchain


Odd Linaro GCC 4.8 2015.06 behavior with precompiled headers

2015-08-31 Thread Dragan Stancevic
Hi-

It seems that there is some discrepancy between Linaro GCC 4.8 2015.06 and 
Linaro GCC 4.8 2014.11 with regards to precompiled headers.

It appears that 2015.06 doesn't even attempt to open the precompiled headers 
according to strace. I have been looking on gcc mailing list but have not been 
able to find any fixes related to precompiled headers.

Does anyone have any pointers as to what should I be looking at to get to the 
bottom of this issue?

This simple program compiles without any problems on 2014.11, but fails on 
2015.06 because 2015.06 doesn't even attempt to read tst.h.gch created by "make 
header"

dragans@tst:~$ cat Makefile
PROJ=tst
CC=arm-linux-gcc
LD=arm-linux-ld

all: header $(PROJ)

header: $(PROJ)._
cp $(PROJ)._ $(PROJ).h
$(CC) -x c-header -c $(PROJ).h

$(PROJ):
$(RM) $(PROJ).h
$(CC) $(PROJ).c -o $(PROJ)

clean:
$(RM) $(PROJ).h.gch $(PROJ).h $(PROJ)

dragans@tst:~$ cat tst._
#include 


dragans@tst:~$ cat tst.c
#include "tst.h"
int main(int argc, char**argv)
{
  char *s = "Test";
  printf("%s\n", s);
  return 0;
}

___
linaro-toolchain mailing list
linaro-toolchain@lists.linaro.org
https://lists.linaro.org/mailman/listinfo/linaro-toolchain