| Submitter | Blue Swirl |
|---|---|
| Date | 2009-08-05 18:51:53 |
| Message ID | <f43fc5580908051151o2d3281acpfc1eabe81d93b6c2@mail.gmail.com> |
| Download | mbox | patch |
| Permalink | /patch/39421/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/cgcc b/cgcc index 59de967..1ddbcb0 100755 --- a/cgcc +++ b/cgcc @@ -265,7 +265,7 @@ sub add_specs { &float_types (1, 1, 33, [24,8], [53,11], [113,15]) . &define_size_t ("long unsigned int")); } elsif ($spec eq 'x86_64') { - return (' -Dx86_64=1 -D__x86_64=1 -D__x86_64__=1' . + return (' -Dx86_64=1 -D__x86_64=1 -D__x86_64__=1' . ($m32 ? '' : ' -D__LP64__=1') . &integer_types (8, 16, 32, $m32 ? 32 : 64, 64, 128) . &float_types (1, 1, 33, [24,8], [53,11], [113,15]) . &define_size_t ($m32 ? "unsigned int" : "long unsigned int"));
Signed-off-by: Blue Swirl <blauwirbel@gmail.com> --- cgcc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)