mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-11 22:31:12 +02:00
Add missing __ppc__ definition.
* check/lightning.c: Add missing ppc preprocessor definition.
This commit is contained in:
parent
5d60ba7b05
commit
19123bae5d
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2013-03-08 Paulo Andrade <pcpa@gnu.org>
|
||||
|
||||
* check/lightning.c: Add missing ppc preprocessor definition.
|
||||
|
||||
2013-03-06 Paulo Andrade <pcpa@gnu.org>
|
||||
|
||||
* check/float.tst: Comment out the int to negative infinity
|
||||
|
|
|
@ -3960,6 +3960,11 @@ main(int argc, char *argv[])
|
|||
sizeof(cmdline) - opt_short,
|
||||
" -D__arm__=1");
|
||||
#endif
|
||||
#if defined(__ppc__) || defined(__powerpc__)
|
||||
opt_short += snprintf(cmdline + opt_short,
|
||||
sizeof(cmdline) - opt_short,
|
||||
" -D__ppc__=1");
|
||||
#endif
|
||||
#if defined(__sparc__)
|
||||
opt_short += snprintf(cmdline + opt_short,
|
||||
sizeof(cmdline) - opt_short,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue