Re: [PATCH, nds32] Missing target_cpu_default in TARGET_DEFAULT_TARGET_FLAGS.

2013-12-19 Thread Chung-Ju Wu
2013/12/17 Monk Chiang : > > I add comment to describe why I adding TARGET_CPU_DEFAULT, > and fix typo in ChangeLog fle. > > Thank you for your suggestion. > > Index: ChangeLog > === > --- ChangeLog (revision 206039) > +++ ChangeLog

Re: [PATCH, nds32] Missing target_cpu_default in TARGET_DEFAULT_TARGET_FLAGS.

2013-12-16 Thread Monk Chiang
2013/12/13 Chung-Ju Wu : > 2013/12/11 Monk Chiang : >> Hi, >> >> Recently I used --target=nds32be-elf to configure nds32 gcc, >> it seems that the big endian is not set as default. >> > [...] >> >> The following is the patch to fix this issue. Tested on nds32be-elf. >> >> OK to apply? >> >> Index:

Re: [PATCH, nds32] Missing target_cpu_default in TARGET_DEFAULT_TARGET_FLAGS.

2013-12-12 Thread Chung-Ju Wu
2013/12/11 Monk Chiang : > Hi, > > Recently I used --target=nds32be-elf to configure nds32 gcc, > it seems that the big endian is not set as default. > [...] > > The following is the patch to fix this issue. Tested on nds32be-elf. > > OK to apply? > > Index: common/config/nds32/nds32-common.c > ==

[PATCH, nds32] Missing target_cpu_default in TARGET_DEFAULT_TARGET_FLAGS.

2013-12-11 Thread Monk Chiang
Hi, Recently I used --target=nds32be-elf to configure nds32 gcc, it seems that the big endian is not set as default. In the config.gcc, I notice that target_cpu_default is defined as: nds32le-*-*) target_cpu_default="0" nds32be-*-*) target_cpu_default="0|MASK_BIG_ENDIAN" Bu