diff options
author | Robert Mustacchi <rm@joyent.com> | 2012-06-07 23:21:04 +0000 |
---|---|---|
committer | isaacs <i@izs.me> | 2012-06-07 17:54:56 -0700 |
commit | f62441367fbe23116faf800848d73036ad0b5ffd (patch) | |
tree | 0386cab09a63cca6cc3be4b30ebfb815c0ca98b6 /common.gypi | |
parent | 0435f9b28c8eefc6a3ccbe6f06d731dc6b3e7796 (diff) | |
download | node-new-f62441367fbe23116faf800848d73036ad0b5ffd.tar.gz |
x64 target should always pass -m64
Diffstat (limited to 'common.gypi')
-rw-r--r-- | common.gypi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common.gypi b/common.gypi index 8b3e7c2e74..ca0cf9f3e1 100644 --- a/common.gypi +++ b/common.gypi @@ -145,6 +145,10 @@ 'cflags': [ '-m32' ], 'ldflags': [ '-m32' ], }], + [ 'target_arch=="x64"', { + 'cflags': [ '-m64' ], + 'ldflags': [ '-m64' ], + }], [ 'OS=="linux"', { 'ldflags': [ '-rdynamic' ], }], |