1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

build: add x32 support to gyp build

This commit adds x32 support to the gyp build.  Configure with:

    $ ./gyp_uv.py -Dtarget_arch=x32
This commit is contained in:
Ben Noordhuis 2014-10-14 19:45:14 +02:00 committed by Saúl Ibarra Corretgé
parent 6591d000d1
commit f914721c24
2 changed files with 6 additions and 0 deletions

View File

@ -123,6 +123,8 @@ Run:
$ ./gyp_uv.py -f make
$ make -C out
Run `./gyp_uv.py -f make -Dtarget_arch=x32` to build [x32][] binaries.
### OS X
Run:

View File

@ -143,6 +143,10 @@
'cflags': [ '-m32' ],
'ldflags': [ '-m32' ],
}],
[ 'target_arch=="x32"', {
'cflags': [ '-mx32' ],
'ldflags': [ '-mx32' ],
}],
[ 'OS=="linux"', {
'cflags': [ '-ansi' ],
}],