require("fs-base").workingDirectory() error

9 views
Skip to first unread message

Christoph Dorn

unread,
Sep 20, 2011, 4:20:04 PM9/20/11
to gp...@googlegroups.com
Calling:

require("fs-base").workingDirectory()

Gives:

JS strict warning #162 in fs-base.js at line 353 - reference to
undefined property dh.FILENAME_MAX
[pinf-loader] Error: gpsee.module.ca.page.gffi.Memory.constructor.size:
nan is not a valid memory size

Memory((void 0))@:0
workingDirectory()@/opt/local/gpsee/libexec/fs-base.js:353
([object
gpsee.module.Exports])@/pinf/workspaces/github.com/pinf/loader-js/lib/pinf-loader-js/./adapter/gpsee.js:32

()@/pinf/workspaces/github.com/pinf/loader-js/./lib/pinf-loader-js/loader.js:130
@/pinf/workspaces/github.com/pinf/loader-js/pinf-loader.js:2


/opt/local/gpsee/libexec/fs-base.js source for reference:

exports.workingDirectory = function workingDirectory()
{
var buf = new ffi.Memory(dh.FILENAME_MAX);
var dirp = _getcwd.call(buf, buf.size);

if (!dirp)
throw new Error("Cannot determine working directory" + syserr());

return dirp.asString(-1);
};

Christoph

Christoph Dorn

unread,
Sep 20, 2011, 4:36:14 PM9/20/11
to gp...@googlegroups.com
These are all related I presume:

JS strict warning #162 in fs-base.js at line 487 - reference to undefined property dh.S_IFREG
JS strict warning #162 in fs-base.js at line 180 - reference to undefined property dh.O_RDONLY
JS strict warning #162 in fs-base.js at line 500 - reference to undefined property dh.S_IFDIR
JS strict warning #162 in fs-base.js at line 180 - reference to undefined property dh.O_RDONLY
JS strict warning #162 in fs-base.js at line 500 - reference to undefined property dh.S_IFDIR
JS strict warning #162 in fs-base.js at line 180 - reference to undefined property dh.O_RDONLY
JS strict warning #162 in fs-base.js at line 500 - reference to undefined property dh.S_IFDIR
JS strict warning #162 in fs-base.js at line 180 - reference to undefined property dh.O_RDONLY
JS strict warning #162 in fs-base.js at line 500 - reference to undefined property dh.S_IFDIR

Christoph


Christoph Dorn
20 September, 2011 1:20 PM

Jeff Johnson

unread,
Sep 20, 2011, 4:55:55 PM9/20/11
to gp...@googlegroups.com

On Sep 20, 2011, at 4:36 PM, Christoph Dorn wrote:

> These are all related I presume:
>
> JS strict warning #162 in fs-base.js at line 487 - reference to undefined property dh.S_IFREG
> JS strict warning #162 in fs-base.js at line 180 - reference to undefined property dh.O_RDONLY
> JS strict warning #162 in fs-base.js at line 500 - reference to undefined property dh.S_IFDIR
> JS strict warning #162 in fs-base.js at line 180 - reference to undefined property dh.O_RDONLY
> JS strict warning #162 in fs-base.js at line 500 - reference to undefined property dh.S_IFDIR
> JS strict warning #162 in fs-base.js at line 180 - reference to undefined property dh.O_RDONLY
> JS strict warning #162 in fs-base.js at line 500 - reference to undefined property dh.S_IFDIR
> JS strict warning #162 in fs-base.js at line 180 - reference to undefined property dh.O_RDONLY
> JS strict warning #162 in fs-base.js at line 500 - reference to undefined property dh.S_IFDIR
>

Yes: and the values (if they've gone AWOL) can likely be stubbed in without difficulty (its a bit
nasty scraping #define's out of C and re-presenting as manifest constants in GPSEE+JS automagically).

But what would likely be most useful here (imho), would be to start getting
some sort of "make check" and automated testing in place for GPSEE.

I have some of that automation in place from when I was last active
with JS and GPSEE -- but that's >2 years ago now, and before "fs-base.js"
existed.

Still: there's not much needed for unit test coverage of syscall bindings onto
existing library routines, I'm quite sure the tests could be ported easily,
or new tests substituted.

Here's what I was doing for unit testing (against my custom modules):

cvs -d ":pserver:anon...@rpm5.org:/v/rpm/cvs" get rpm/js/tscripts

My organization is perhaps split up differently than "fs-base.js" is. E.g. my
no-brainer system call wrapper is in Sys.js (and with the same leading 0 octal issues, sigh).

The "ack()" function is just an eval and a comparison with a "known good" result.
Every *Unit test harness on the planet has an equivalent: my feeble efforts
ewith ack() and nack() are hard-coded in C in the parent directory of .../tscripts
(i.e. just check out rpm/js instead of rpm/js/tscripts using cvs)

But getting a "make check" in place will only help stabilizing GPSEE imho however
unit testing is done.

hth

73 de Jeff

Wes Garland

unread,
Sep 20, 2011, 5:32:28 PM9/20/11
to gp...@googlegroups.com
On 20 September 2011 16:55, Jeff Johnson <n3...@mac.com> wrote:
Yes: and the values (if they've gone AWOL) can likely be stubbed in without difficulty (its a bit
nasty scraping #define's out of C and re-presenting as manifest constants in GPSEE+JS automagically).

"a bit nasty" would be the understatement of the century, sadly.  Read modules/gffi/module.mk if you are prepared to worship the Flying Spagetti Code Monster.

Jeff, have you ever seen a comprehensive list of *macros* provided by POSIX 1003.1, SUSv3, SVID etc?  I consulted The Open Group's website when I wrote the gffi module, and was able to ensure that I get all of the function calls  (or macros that work like functions), but a comprehensive list of constants like O_RDONLY which are defined by the standards could be rolled into this, making the /usr/include/* scraping significantly more reliable.
 
Christoph - this is almost certainly a Lion-related bug in the build system. I'll look into it shortly.   As Jeff suggests, you could supply the constants yourself by reading the C headers in /usr/include/.  Yes, I know, that's a horrible suggestion but the best one I have at this exact moment.

But what would likely be most useful here (imho), would be to start getting
some sort of "make check" and automated testing in place for GPSEE.

I agree.  Patches welcome. :P

Seriously, it's on the to-do list, but it's a long, long list.

Wes

--
Wesley W. Garland
Director, Product Development
PageMail, Inc.
+1 613 542 2787 x 102

Jeff Johnson

unread,
Sep 20, 2011, 5:48:02 PM9/20/11
to gp...@googlegroups.com
On Sep 20, 2011, at 5:32 PM, Wes Garland wrote:

On 20 September 2011 16:55, Jeff Johnson <n3...@mac.com> wrote:
Yes: and the values (if they've gone AWOL) can likely be stubbed in without difficulty (its a bit
nasty scraping #define's out of C and re-presenting as manifest constants in GPSEE+JS automagically).

"a bit nasty" would be the understatement of the century, sadly.  Read modules/gffi/module.mk if you are prepared to worship the Flying Spagetti Code Monster.

Jeff, have you ever seen a comprehensive list of *macros* provided by POSIX 1003.1, SUSv3, SVID etc?  I consulted The Open Group's website when I wrote the gffi module, and was able to ensure that I get all of the function calls  (or macros that work like functions), but a comprehensive list of constants like O_RDONLY which are defined by the standards could be rolled into this, making the /usr/include/* scraping significantly more reliable.
 

I haven't seen a list per se: but the Larch project (now known as www.splint.org
and used by splint static annotations) has a de facto set of pre-defined "standard"
constants used in "standard: confromance off in /usr/share/* somewhere. I can fish
them out for if you wish.

But relying on "standards" really doesn't solve any real world problems: you will
need to adapt GOSEE to handle all of Good/Bad/Ugly as found. Otherwise GPSEE
modules will crash-and-burn every new published standard.,

For "de facto", what is done by perl to create *.ph files, adapted to JS, is likely
the best bet at automatic generation (discussed on #gpsee years ago: I still can't
think of better).

Christoph - this is almost certainly a Lion-related bug in the build system. I'll look into it shortly.   As Jeff suggests, you could supply the constants yourself by reading the C headers in /usr/include/.  Yes, I know, that's a horrible suggestion but the best one I have at this exact moment.


Designing in a "wrapper" top-level module with const's that then loads
a bottom level compiled module is what I typically use: but you are using ffi
and so everything is mostly a metamodule description trying into existing
library routines. Works sure just fragile …

But what would likely be most useful here (imho), would be to start getting
some sort of "make check" and automated testing in place for GPSEE.

I agree.  Patches welcome. :P


Getting there …

Seriously, it's on the to-do list, but it's a long, long list.


… and life is short, yes.

armv7hl patches to gpsee_lock.c coming (from here
as good as anything else).

There's got to be a better more portable API around in GCC however (my guises) will see if
I can't figure down the road a bit: right now I just want GPSEE 0.2 running on a panda board …

hth

73 de Jeff

Donny Viszneki

unread,
Sep 20, 2011, 5:30:49 PM9/20/11
to gp...@googlegroups.com
Thanks for your report :)

Yes all the errors in your follow up email are clearly related.

A little bit of background: require('gffi').std and
require('gffi').gpsee are examples of "cdefgroups" which are simply
organizations of macros that were available at compile-time made
available at run-time for invoking C APIs that have not been made
available with a JSAPI GPSEE module. Looking at fs-base now, to the
best of my recollection, the variable "dh" in fs-base.js may reference
the wrong cdefgroup.

Please tell me what system you're running, and if you can, give me the
output of this program:

var ffi = require('gffi');
['S_IFREG','S_IFDIR','O_RDONLY'].forEach(function(mac){
['std','gpsee'].forEach(function(group){
print(group+'.'+mac+' = '+ffi[group][mac])
})
})
/* end of program */

Thanks!

--
http://codebad.com/

Christoph Dorn

unread,
Sep 20, 2011, 8:10:16 PM9/20/11
to gp...@googlegroups.com
Donny Viszneki wrote

> Please tell me what system you're running, and if you can, give me the
> output of this program:
OSX Lion.

> var ffi = require('gffi');
> ['S_IFREG','S_IFDIR','O_RDONLY'].forEach(function(mac){
> ['std','gpsee'].forEach(function(group){
> print(group+'.'+mac+' = '+ffi[group][mac])
> })
> })
> /* end of program */

$ gsr -f ./scripts/gffi.js
JS strict warning #162 in gffi.js at line 4 - reference to undefined
property ffi[group][mac]
std.S_IFREG = undefined
JS strict warning #162 in gffi.js at line 4 - reference to undefined
property ffi[group][mac]
gpsee.S_IFREG = undefined
JS strict warning #162 in gffi.js at line 4 - reference to undefined
property ffi[group][mac]
std.S_IFDIR = undefined
JS strict warning #162 in gffi.js at line 4 - reference to undefined
property ffi[group][mac]
gpsee.S_IFDIR = undefined
JS strict warning #162 in gffi.js at line 4 - reference to undefined
property ffi[group][mac]
std.O_RDONLY = undefined
JS strict warning #162 in gffi.js at line 4 - reference to undefined
property ffi[group][mac]
gpsee.O_RDONLY = undefined

Thanks!
Christoph

Wes Garland

unread,
Sep 20, 2011, 10:32:21 PM9/20/11
to gp...@googlegroups.com
Christoph;

Can you run this?  gsr -c 'print(require("gffi").gpsee.O_TRUNC)'

I get 1024 on Lion, but I bet you're getting undefined.

I suspect this may be due to the build problems you had on Lion with that bad header file. This could have interrupted the system header sniffing -- it's in the same process -- leaving an incomplete file that the build system things is up to date.

Can you "make clean" and try build/installing again?

Wes

Christoph Dorn

unread,
Sep 20, 2011, 11:05:20 PM9/20/11
to gp...@googlegroups.com
Wes Garland wrote:
> Christoph;
>
> Can you run this? gsr -c 'print(require("gffi").gpsee.O_TRUNC)'
>
> I get 1024 on Lion, but I bet you're getting undefined.

Before rebuild:

$ gsr -c 'print(require("gffi").gpsee.O_TRUNC)'
JS strict warning #162 in command_line at line 1 - reference to
undefined property require("gffi").gpsee.O_TRUNC
undefined

> I suspect this may be due to the build problems you had on Lion with
> that bad header file. This could have interrupted the system header
> sniffing -- it's in the same process -- leaving an incomplete file
> that the build system things is up to date.
>
> Can you "make clean" and try build/installing again?

After:

cd ./gpsee
hg pull
hg update
make clean
./configure
--with-mozilla=/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey
make build
sudo make install

$ gsr -c 'print(require("gffi").gpsee.O_TRUNC)'
JS strict warning #162 in command_line at line 1 - reference to
undefined property require("gffi").gpsee.O_TRUNC
undefined

Christoph


macbook-home-cadorn-net:gpsee cadorn$ hg pull
hg updatewarning: gpsee.googlecode.com certificate with fingerprint
03:60:ab:1f:ea:ca:9b:97:e2:20:0b:fc:6c:4d:27:2d:6f:38:76:06 not verified
(check hostfingerprints or web.cacerts config setting)
pulling from https://gpsee.googlecode.com/hg/
searching for changes
no changes found
macbook-home-cadorn-net:gpsee cadorn$ hg update
0 files updated, 0 files merged, 0 files removed, 0 files unresolved
macbook-home-cadorn-net:gpsee cadorn$ make clean
rm -f version.o gpsee.o gpsee_unix.o gpsee_lock.o gpsee_flock.o
gpsee_util.o gpsee_modules.o gpsee_compile.o gpsee_context_private.o
gpsee_xdrfile.o gpsee_hookable_io.o gpsee_datastores.o gpsee_monitors.o
gpsee_realms.o gpsee_gccallbacks.o gpsee_bytethings.o gpsee_p2open.o
modules/gpsee/gpsee.a modules/system/system.a modules/vm/vm.a
gpsee_unix.o ./gpsee_bytethings.o ./gpsee_compile.o
./gpsee_context_private.o ./gpsee_datastores.o ./gpsee_flock.o
./gpsee_gccallbacks.o ./gpsee_hookable_io.o ./gpsee_lock.o
./gpsee_modules.o ./gpsee_monitors.o ./gpsee_p2open.o ./gpsee_realms.o
./gpsee_unix.o ./gpsee_util.o ./gpsee_xdrfile.o doxygen.log libgpsee.a
gsr.o gpsee_precompiler.o
rm -f modules/binary/binary.dylib modules/cgi/cgi.dylib
modules/curses/curses.dylib modules/gffi/gffi.dylib
modules/shellalike/shellalike.dylib modules/signal/signal.dylib
modules/thread/thread.dylib
rm -f gpsee_version
rm -f gpsee-config
rm -f modules.h gpsee_config.h
rm -f version.c
make clean_modules clean_makefile_depends
* Building dependencies for: gpsee.c gpsee_bytethings.c
gpsee_compile.c gpsee_context_private.c gpsee_datastores.c gpsee_flock.c
gpsee_gccallbacks.c gpsee_hookable_io.c gpsee_lock.c gpsee_modules.c
gpsee_monitors.c gpsee_p2open.c gpsee_realms.c gpsee_unix.c gpsee_util.c
gpsee_version.c gpsee_xdrfile.c
gcc -E -MM -MG -DGPSEE_UNIX_STREAM -D_GNU_SOURCE -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -DMAKEDEPEND gpsee.c gpsee_bytethings.c
gpsee_compile.c gpsee_context_private.c gpsee_datastores.c gpsee_flock.c
gpsee_gccallbacks.c gpsee_hookable_io.c gpsee_lock.c gpsee_modules.c
gpsee_monitors.c gpsee_p2open.c gpsee_realms.c gpsee_unix.c gpsee_util.c
gpsee_version.c gpsee_xdrfile.c > depend.mk

* Cleaning modules/gpsee/
depend.mk gpsee.c gpsee.jsdoc gpsee.o version.c
version.h version.o
rm -f version.o gpsee.o version.o gpsee.a gpsee.dylib
rm -f version.c
rm -f depend.mk

* Cleaning modules/system/
depend.mk environment.c environment.o module.mk system.c
system.h system.o
rm -f system.o environment.o system.a system.dylib
rm -f depend.mk

* Cleaning modules/vm/
depend.mk vm.c vm.jsdoc vm.o
rm -f vm.o vm.a vm.dylib
rm -f depend.mk

* Cleaning modules/binary/
BinaryStub.c ByteArray.c ByteString.c binary.c binary.h
binary.js bytethings.c bytethings.h module.mk version.h
rm -f version.o binary.o bytethings.o ByteString.o ByteArray.o
BinaryStub.o version.o binary.a binary.dylib
rm -f version.c
rm -f depend.mk

* Cleaning modules/cgi/
PHPSession_class.c cgi.c cgi.h cgi.jsdoc
cgihtml module.mk phpsess.c query_object.c
rm -f cgi.o query_object.o cgihtml/cgihtml.a cgi.a cgi.dylib
rm -f depend.mk

* Cleaning modules/curses/
curses.c curses.jsdoc curses_Window.c
curses_keyboard.c curses_module.h module.mk
rm -f curses.o curses_Window.o curses_keyboard.o curses.a curses.dylib
rm -f depend.mk

* Cleaning modules/gffi/
CFunction.c WillFinalize.c extract_unix_v3.sh
gffi.h sanity.mk structs.c util.c
CType.c aux_types.c extract_xcurses.sh
gffi.js std_functions.c structs.decl
version.c
Library.c aux_types.decl ffi_types.decl
jsv_constants.decl std_functions.h tmse_parse.sed
version.h
Memory.c defines-test.c function_aliases.incl
mk_std_cppflags.c std_macro_consts.c
unix_api_v3.incl xcurses_api.incl
MutableStruct.c defines.c gffi.c
module.mk std_macro_consts.decl unsupported_functions.incl
rm -f util.o structs.o defines.o std_functions.o MutableStruct.o
CFunction.o Memory.o Library.o WillFinalize.o CType.o version.o
version.o aux_types.o gffi.o util.o structs.o defines.o std_functions.o
MutableStruct.o CFunction.o Memory.o Library.o WillFinalize.o CType.o
version.o gffi.a gffi.dylib
rm -f gpsee_defs std_defs defines-test aux_types mk_std_cppflags
std_macro_consts
rm -f compiler_dmp.re gpsee_defs.dmp std_defs.dmp defines.incl
structs.incl std_gpsee_no.h std_macro_consts.h
rm -f gpsee_defs.c std_defs.c aux_types.incl std_cppflags.mk
rm -f depend.mk

* Cleaning modules/shellalike/
shellalike.c shellalike.h shellalike.js
rm -f shellalike.o shellalike.a shellalike.dylib
rm -f depend.mk

* Cleaning modules/signal/
signal.c signal.jsdoc signal_list.h
rm -f signal.o signal.a signal.dylib
rm -f depend.mk

* Cleaning modules/thread/
thread.c thread.jsdoc
rm -f thread.o thread.a thread.dylib
rm -f depend.mk

* Done cleaning modules
rm -f gpsee_release.mk
rm -f depend.mk
macbook-home-cadorn-net:gpsee cadorn$ ./configure
--with-mozilla=/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey

* Configuring SpiderMonkey

rm -f
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/Makefile
vars.mk
/usr/bin/make configure
* Generating
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/configure
cd
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src &&
/opt/local/bin/autoconf213
[ -d
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release
] || mkdir -p
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release
cd
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release
&& CC="gcc" CXX="g++"
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/configure
--with-system-nspr --enable-threadsafe --enable-ctypes
--prefix=/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi
--libdir=/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/lib
--includedir=/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include
loading cache ./config.cache
checking host system type... x86_64-apple-darwin11.1.0
checking target system type... x86_64-apple-darwin11.1.0
checking build system type... x86_64-apple-darwin11.1.0
checking for mawk... (cached) gawk
checking for gcc... (cached) gcc
checking whether the C compiler (gcc ) works... yes
checking whether the C compiler (gcc ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for c++... (cached) g++
checking whether the C++ compiler (g++ ) works... yes
checking whether the C++ compiler (g++ ) is a cross-compiler... no
checking whether we are using GNU C++... (cached) yes
checking whether g++ accepts -g... (cached) yes
checking for ranlib... (cached) ranlib
checking for as... (cached) /usr/bin/as
checking for ar... (cached) ar
checking for ld... (cached) ld
checking for strip... (cached) strip
checking for windres... no
checking whether gcc and cc understand -c and -o together... (cached) yes
checking how to run the C preprocessor... (cached) gcc -E
checking how to run the C++ preprocessor... (cached) g++ -E
checking for sb-conf... no
checking for ve... no
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking whether ln -s works... (cached) yes
checking for perl5... (cached) /opt/local/bin/perl5
checking for minimum required perl version >= 5.006... 5.012003
checking for full perl installation... yes
checking for python... (cached) /usr/bin/python
checking for doxygen... (cached) :
checking for autoconf... (cached) /opt/local/bin/autoconf
checking for unzip... (cached) /usr/bin/unzip
checking for zip... (cached) /usr/bin/zip
checking for makedepend... (cached) /usr/X11/bin/makedepend
checking for xargs... (cached) /usr/bin/xargs
checking for pbbuild... (cached) /usr/bin/xcodebuild
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/configure:
line 3798: test: Xcode 4.1 Build version 4B110: integer expression expected
checking for sdp... (cached) /usr/bin/sdp
checking for gmake... (cached) /usr/bin/make
checking for X... (cached) no
checking whether the compiler supports -Wno-invalid-offsetof... yes
checking whether the compiler supports -Wno-variadic-macros... yes
checking whether ld has archive extraction flags... (cached) no
checking that static assertion macros used in autoconf tests work...
(cached) yes
checking for 64-bit OS... yes
checking for -dead_strip option to ld... yes
checking for ANSI C header files... (cached) yes
checking for working const... (cached) yes
checking for mode_t... (cached) yes
checking for off_t... (cached) yes
checking for pid_t... (cached) yes
checking for size_t... (cached) yes
checking for ssize_t... (cached) yes
checking for st_blksize in struct stat... (cached) yes
checking for siginfo_t... (cached) yes
checking for stdint.h... (cached) yes
checking for the size of void*... (cached) 8
checking for the alignment of void*... (cached) 8
checking for the size of double... (cached) 8
checking for int16_t... (cached) yes
checking for int32_t... (cached) yes
checking for int64_t... (cached) yes
checking for int64... (cached) no
checking for uint... (cached) yes
checking for uint_t... (cached) no
checking for uint16_t... (cached) no
checking for uname.domainname... (cached) no
checking for uname.__domainname... (cached) no
checking for visibility(hidden) attribute... (cached) yes
checking for visibility(default) attribute... (cached) yes
checking for visibility pragma support... (cached) yes
checking For gcc visibility bug with class-level attributes (GCC bug
26905)... (cached) yes
checking For x86_64 gcc visibility bug with builtins (GCC bug 20297)...
(cached) no
checking for dirent.h that defines DIR... (cached) yes
checking for opendir in -ldir... (cached) no
checking for sys/byteorder.h... (cached) no
checking for compat.h... (cached) no
checking for getopt.h... (cached) yes
checking for sys/bitypes.h... (cached) no
checking for memory.h... (cached) yes
checking for unistd.h... (cached) yes
checking for gnu/libc-version.h... (cached) no
checking for nl_types.h... (cached) yes
checking for malloc.h... (cached) no
checking for X11/XKBlib.h... (cached) yes
checking for sys/statvfs.h... (cached) yes
checking for sys/statfs.h... (cached) no
checking for sys/vfs.h... (cached) no
checking for sys/mount.h... (cached) yes
checking for mmintrin.h... (cached) yes
checking for new... (cached) yes
checking for sys/cdefs.h... (cached) yes
checking for gethostbyname_r in -lc_r... (cached) no
checking for dladdr... (cached) yes
checking for socket in -lsocket... (cached) no
checking whether gcc accepts -pthread... yes
checking whether mmap() sees write()s... yes
checking whether gcc needs -traditional... (cached) no
checking for 8-bit clean memcmp... (cached) yes
checking for fchmod... (cached) yes
checking for flockfile... (cached) yes
checking for getc_unlocked... (cached) yes
checking for _getc_nolock... (cached) no
checking for getpagesize... (cached) yes
checking for lchown... (cached) yes
checking for localtime_r... (cached) yes
checking for lstat64... (cached) yes
checking for memmove... (cached) yes
checking for random... (cached) yes
checking for rint... (cached) yes
checking for sbrk... (cached) yes
checking for snprintf... (cached) yes
checking for stat64... (cached) yes
checking for statvfs... (cached) yes
checking for statvfs64... (cached) no
checking for strerror... (cached) yes
checking for strtok_r... (cached) yes
checking for truncate64... (cached) no
checking for wcrtomb... (cached) yes
checking for mbrtowc... (cached) yes
checking for res_ninit()... (cached) no
checking for gnu_get_libc_version()... (cached) no
checking for an implementation of va_copy()... (cached) yes
checking for an implementation of __va_copy()... (cached) yes
checking whether va_lists can be copied by value... (cached) no
checking for gcc 3.0 ABI... (cached) yes
checking for C++ "explicit" keyword... (cached) yes
checking for C++ "typename" keyword... (cached) yes
checking for modern C++ template specialization syntax support...
(cached) yes
checking whether partial template specialization works... (cached) yes
checking whether operators must be re-defined for templates derived from
templates... (cached) no
checking whether we need to cast a derived template to pass as its base
class... (cached) no
checking whether the compiler can resolve const ambiguities for
templates... (cached) yes
checking whether the C++ "using" keyword can change access... (cached) yes
checking whether the C++ "using" keyword resolves ambiguity... (cached) yes
checking for "std::" namespace... (cached) yes
checking whether standard template operator!=() is ambiguous... (cached)
unambiguous
checking for C++ reinterpret_cast... (cached) yes
checking for C++ dynamic_cast to void*... (cached) yes
checking whether C++ requires implementation of unused virtual
methods... (cached) yes
checking for trouble comparing to zero near std::operator!=()... (cached) no
checking for LC_MESSAGES... (cached) yes
checking for nspr-config... /opt/local/bin/nspr-config
checking for NSPR - version >= 4.7.0... yes
checking for valid optimization flags... yes
checking for __cxa_demangle... (cached) yes
checking for unwind.h... (cached) yes
checking for _Unwind_Backtrace... (cached) yes
checking for gcc -pipe support... yes
checking whether C compiler supports -fprofile-generate... no
checking whether C compiler supports -fprofile-arcs... yes
checking for correct temporary object destruction order... yes
checking for correct overload resolution with const and templates... no
checking for tm_zone tm_gmtoff in struct tm... (cached) yes
checking for setlocale... (cached) yes
checking for localeconv... (cached) yes
creating Makefile
creating ./config.status
creating config/autoconf.mk
creating js-config.h
js-config.h is unchanged
config/autoconf.mk is unchanged
invoking make to create js-config script
rm -f js-config.tmp
sed <
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/js-config.in
> js-config.tmp \
-e
's|@prefix@|/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi|'
\
-e
's|@exec_prefix@|/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi|'
\
-e
's|@includedir@|/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include|'
\
-e
's|@libdir@|/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/lib|'
\
-e 's|@MOZILLA_VERSION@||' \
-e 's|@LIBRARY_NAME@|mozjs|' \
-e 's|@NSPR_CFLAGS@|-I/opt/local/include/nspr|' \
-e 's|@JS_CONFIG_LIBS@|-L/opt/local/lib/nspr -lplds4 -lplc4 -lnspr4
-L/opt/local/lib -dynamiclib -install_name
@executable_path/libmozjs.dylib -compatibility_version 1
-current_version 1 -single_module -lm |' \
-e
's|@MOZ_JS_LIBS@|-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/lib
-lmozjs|' \
&& mv js-config.tmp js-config && chmod +x js-config
configuring in ctypes/libffi
running /bin/sh
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/configure
--disable-shared --enable-static --disable-raw-api --with-pic
--cache-file=/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/ctypes/libffi/config.cache
--srcdir=/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
configure: loading cache
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/ctypes/libffi/config.cache
checking build system type... (cached) x86_64-apple-darwin11.1.0
checking host system type... (cached) x86_64-apple-darwin11.1.0
checking target system type... (cached) x86_64-apple-darwin11.1.0
checking for a BSD-compatible install... (cached) /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p...
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/install-sh
-c -d
checking for gawk... (cached) gawk
checking whether make sets $(MAKE)... (cached) yes
checking for gcc... (cached) gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... (cached) o
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking for style of include used by make... GNU
checking dependency style of gcc... (cached) gcc3
checking dependency style of gcc... (cached) gcc3
checking whether gcc and cc understand -c and -o together... (cached) yes
checking for a sed that does not truncate output... (cached) /usr/bin/sed
checking for grep that handles long lines and -e... (cached) /usr/bin/grep
checking for egrep... (cached) /usr/bin/grep -E
checking for fgrep... (cached) /usr/bin/grep -F
checking for ld used by gcc... (cached)
/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld
checking if the linker
(/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld) is GNU
ld... (cached) no
checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm
checking the name lister (/usr/bin/nm) interface... (cached) BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... (cached) 196608
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for /usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld
option to reload object files... (cached) -r
checking for objdump... no
checking how to recognize dependent libraries... (cached) pass_all
checking for ar... (cached) ar
checking for strip... (cached) strip
checking for ranlib... (cached) ranlib
checking command to parse /usr/bin/nm output from gcc object... (cached) ok
checking for dsymutil... (cached) dsymutil
checking for nmedit... (cached) nmedit
checking for lipo... (cached) lipo
checking for otool... (cached) otool
checking for otool64... no
checking for -single_module linker flag... (cached) yes
checking for -exported_symbols_list linker flag... (cached) yes
checking how to run the C preprocessor... (cached) gcc -E
checking for ANSI C header files... (cached) yes
checking for sys/types.h... (cached) yes
checking for sys/stat.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for memory.h... (cached) yes
checking for strings.h... (cached) yes
checking for inttypes.h... (cached) yes
checking for stdint.h... (cached) yes
checking for unistd.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for objdir... (cached) .libs
checking if gcc supports -fno-rtti -fno-exceptions... (cached) no
checking for gcc option to produce PIC... -fno-common -DPIC
checking if gcc PIC flag -fno-common -DPIC works... (cached) yes
checking if gcc static flag -static works... (cached) no
checking if gcc supports -c -o file.o... (cached) yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker
(/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld) supports
shared libraries... yes
checking dynamic linker characteristics... darwin11.1.0 dyld
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for sys/mman.h... (cached) yes
checking for mmap... (cached) yes
checking for sys/mman.h... (cached) yes
checking for mmap... (cached) yes
checking whether read-only mmap of a plain file works... (cached) yes
checking whether mmap from /dev/zero works... (cached) no
checking for MAP_ANON(YMOUS)... (cached) yes
checking whether mmap with MAP_ANON(YMOUS) works... (cached) yes
checking for ANSI C header files... (cached) yes
checking for memcpy... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking size of double... (cached) 8
checking size of long double... (cached) 16
checking whether byte ordering is bigendian... (cached) no
checking assembler .cfi pseudo-op support... (cached) no
checking whether .eh_frame section should be read-only... (cached) no
checking for __attribute__((visibility("hidden")))... (cached) no
configure: creating ./config.status
config.status: creating include/Makefile
config.status: creating include/ffi.h
config.status: creating Makefile
config.status: creating testsuite/Makefile
config.status: creating man/Makefile
config.status: creating libffi.pc
config.status: creating fficonfig.h
config.status: fficonfig.h is unchanged
config.status: linking
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/x86/ffitarget.h
to include/ffitarget.h
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing include commands
config.status: executing src commands
* Building vars.mk

* Configuring LibFFI

rm -f
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/Makefile
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/config.status
vars.mk
/usr/bin/make configure
[ -d
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release
] || mkdir -p
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release
cd
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release
&& CC="gcc"
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/configure
--prefix=/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install
--libdir=/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib
--includedir=/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/include
checking build system type... x86_64-apple-darwin11.1.0
checking host system type... x86_64-apple-darwin11.1.0
checking target system type... x86_64-apple-darwin11.1.0
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p...
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/install-sh
-c -d
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking dependency style of gcc... gcc3
checking whether gcc and cc understand -c and -o together... yes
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc...
/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld
checking if the linker
(/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld) is GNU ld... no
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm
checking the name lister (/usr/bin/nm) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 196608
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for /usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld
option to reload object files... -r
checking for objdump... no
checking how to recognize dependent libraries... pass_all
checking for ar... ar
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm output from gcc object... ok
checking for dsymutil... dsymutil
checking for nmedit... nmedit
checking for lipo... lipo
checking for otool... otool
checking for otool64... no
checking for -single_module linker flag... yes
checking for -exported_symbols_list linker flag... yes
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fno-common -DPIC
checking if gcc PIC flag -fno-common -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker
(/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld) supports
shared libraries... yes
checking dynamic linker characteristics... darwin11.1.0 dyld
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking for mmap... yes
checking for sys/mman.h... (cached) yes
checking for mmap... (cached) yes
checking whether read-only mmap of a plain file works... yes
checking whether mmap from /dev/zero works... no
checking for MAP_ANON(YMOUS)... yes
checking whether mmap with MAP_ANON(YMOUS) works... yes
checking for ANSI C header files... (cached) yes
checking for memcpy... yes
checking for working alloca.h... yes
checking for alloca... yes
checking size of double... 8
checking size of long double... 16
checking whether byte ordering is bigendian... no
checking assembler .cfi pseudo-op support... no
checking whether .eh_frame section should be read-only... no
checking for __attribute__((visibility("hidden")))... no
configure: creating ./config.status
config.status: creating include/Makefile
config.status: creating include/ffi.h
config.status: creating Makefile
config.status: creating testsuite/Makefile
config.status: creating man/Makefile
config.status: creating libffi.pc
config.status: creating fficonfig.h
config.status: fficonfig.h is unchanged
config.status: linking
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/x86/ffitarget.h
to include/ffitarget.h
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing include commands
config.status: executing src commands
* Building vars.mk

* Building SpiderMonkey

cd
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release
&& /usr/bin/make -j2
/usr/bin/make export
jskwgen.cpp
g++ -DMDCPUCFG=\"md/_darwin.cfg\" -o host_jskwgen.o -c -fno-rtti
-fno-exceptions -Wall -Wpointer-arith -Woverloaded-virtual -Wsynth
-Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wcast-align
-Wno-invalid-offsetof -Wno-variadic-macros -fno-strict-aliasing
-fpascal-strings -fno-common -pthread -pipe -DNDEBUG -DTRIMMED -O3
-fstrict-aliasing -Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I/opt/local/include/nspr
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jskwgen.cpp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-L
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config
nsinstall ../dist/bin
make[3]: Nothing to be done for `export'.
make[3]: Nothing to be done for `export'.
make[3]: Nothing to be done for `export'.
make[3]: Nothing to be done for `export'.
g++ -DMDCPUCFG=\"md/_darwin.cfg\" -o host_jskwgen -fno-rtti
-fno-exceptions -Wall -Wpointer-arith -Woverloaded-virtual -Wsynth
-Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wcast-align
-Wno-invalid-offsetof -Wno-variadic-macros -fno-strict-aliasing
-fpascal-strings -fno-common -pthread -pipe -DNDEBUG -DTRIMMED -O3
-fstrict-aliasing -Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
host_jskwgen.o
./host_jskwgen
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsautokw.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-L
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release
-m 644 js-config.h jsautocfg.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsautokw.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/js.msg
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsapi.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsarray.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsarena.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsatom.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsbit.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsbool.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsclist.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jscntxt.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jscompat.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsdate.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsdbgapi.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsdhash.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsdtoa.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsemit.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsfun.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsgc.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsgcchunk.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jshash.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsinterp.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsinttypes.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsiter.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jslock.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jslong.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsmath.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsobj.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsobjinlines.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/json.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsopcode.tbl
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsopcode.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsotypes.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsparse.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsproxy.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsprf.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jspropertycache.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jspropertycacheinlines.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jspropertytree.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsproto.tbl
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsprvtd.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jspubtd.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsregexp.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsscan.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsscope.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsscript.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsscriptinlines.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsstaticcheck.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsstr.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jstask.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jstracer.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jstypedarray.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jstypes.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsutil.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsvector.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jstl.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jshashtable.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsversion.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jswrapper.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsxdrapi.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsxml.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/prmjtime.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsbuiltins.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/Assembler.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/Allocator.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/CodeAlloc.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/Containers.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/LIR.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/avmplus.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/Fragmento.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/Native.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/NativeX64.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/njconfig.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/RegAlloc.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/nanojit.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/VMPI.h
./dist/include
/usr/bin/make "AR_FLAGS=" "CC_FOR_BUILD=" "CFLAGS=-g -O2" "CXXFLAGS="
"CFLAGS_FOR_BUILD=" "CFLAGS_FOR_TARGET=" "INSTALL=/usr/bin/install -c"
"INSTALL_DATA=/usr/bin/install -c -m 644"
"INSTALL_PROGRAM=/usr/bin/install -c" "INSTALL_SCRIPT=/usr/bin/install
-c" "JC1FLAGS=" "LDFLAGS=" "LIBCFLAGS=" "LIBCFLAGS_FOR_TARGET="
"MAKE=/usr/bin/make" "MAKEINFO=/bin/sh
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/missing
--run makeinfo " "PICFLAG=" "PICFLAG_FOR_TARGET=" "RUNTESTFLAGS="
"SHELL=/bin/sh" "exec_prefix=/usr/local" "infodir=/usr/local/share/info"
"libdir=/usr/local/lib" "prefix=/usr/local" "AR=ar" "AS=as" "CC=gcc"
"CXX=g++"
"LD=/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld"
"NM=/usr/bin/nm" "RANLIB=ranlib" "DESTDIR=" all-recursive
Making all in include
make[5]: Nothing to be done for `all'.
Making all in testsuite
make[5]: Nothing to be done for `all'.
Making all in man
make[5]: Nothing to be done for `all'.
depbase=`echo src/debug.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/debug.lo -MD -MP -MF $depbase.Tpo
-c -o src/debug.lo
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/debug.c
&&\
mv -f $depbase.Tpo $depbase.Plo
depbase=`echo src/prep_cif.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/prep_cif.lo -MD -MP -MF
$depbase.Tpo -c -o src/prep_cif.lo
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/prep_cif.c
&&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/debug.lo -MD -MP -MF
src/.deps/debug.Tpo -c
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/debug.c
-fno-common -DPIC -o src/debug.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/prep_cif.lo -MD -MP -MF
src/.deps/prep_cif.Tpo -c
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/prep_cif.c
-fno-common -DPIC -o src/prep_cif.o
depbase=`echo src/types.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/types.lo -MD -MP -MF $depbase.Tpo
-c -o src/types.lo
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/types.c
&&\
mv -f $depbase.Tpo $depbase.Plo
depbase=`echo src/raw_api.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/raw_api.lo -MD -MP -MF $depbase.Tpo
-c -o src/raw_api.lo
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/raw_api.c
&&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/types.lo -MD -MP -MF
src/.deps/types.Tpo -c
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/types.c
-fno-common -DPIC -o src/types.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/raw_api.lo -MD -MP -MF
src/.deps/raw_api.Tpo -c
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/raw_api.c
-fno-common -DPIC -o src/raw_api.o
depbase=`echo src/java_raw_api.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/java_raw_api.lo -MD -MP -MF
$depbase.Tpo -c -o src/java_raw_api.lo
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/java_raw_api.c
&&\
mv -f $depbase.Tpo $depbase.Plo
depbase=`echo src/closures.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/closures.lo -MD -MP -MF
$depbase.Tpo -c -o src/closures.lo
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/closures.c
&&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/closures.lo -MD -MP -MF
src/.deps/closures.Tpo -c
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/closures.c
-fno-common -DPIC -o src/closures.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/java_raw_api.lo -MD -MP -MF
src/.deps/java_raw_api.Tpo -c
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/java_raw_api.c
-fno-common -DPIC -o src/java_raw_api.o
depbase=`echo src/x86/ffi64.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/x86/ffi64.lo -MD -MP -MF
$depbase.Tpo -c -o src/x86/ffi64.lo
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/x86/ffi64.c
&&\
mv -f $depbase.Tpo $depbase.Plo
depbase=`echo src/x86/darwin64.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-g -O2 -MT src/x86/darwin64.lo -MD -MP -MF $depbase.Tpo -c -o
src/x86/darwin64.lo
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/x86/darwin64.S
&&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/x86/ffi64.lo -MD -MP -MF
src/x86/.deps/ffi64.Tpo -c
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/x86/ffi64.c
-fno-common -DPIC -o src/x86/ffi64.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-g -O2 -MT src/x86/darwin64.lo -MD -MP -MF src/x86/.deps/darwin64.Tpo -c
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/x86/darwin64.S
-fno-common -DPIC -o src/x86/darwin64.o
/bin/sh ./libtool --tag=CC --mode=link gcc -Wall -g -fexceptions -g
-O2 -version-info `grep -v '^#'
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/libtool-version`
-o libffi.la -rpath /usr/local/lib src/debug.lo src/prep_cif.lo
src/types.lo src/raw_api.lo src/java_raw_api.lo src/closures.lo
src/x86/ffi.lo src/x86/darwin.lo src/x86/ffi64.lo src/x86/darwin64.lo
/bin/sh ./libtool --tag=CC --mode=link gcc -Wall -g -fexceptions -g
-O2 -o libffi_convenience.la src/debug.lo src/prep_cif.lo
src/types.lo src/raw_api.lo src/java_raw_api.lo src/closures.lo
src/x86/ffi.lo src/x86/darwin.lo src/x86/ffi64.lo src/x86/darwin64.lo
libtool: link: rm -fr .libs/libffi_convenience.a
.libs/libffi_convenience.la
libtool: link: rm -fr .libs/libffi.a .libs/libffi.la .libs/libffi.lai
libtool: link: ar cru .libs/libffi_convenience.a src/debug.o
src/prep_cif.o src/types.o src/raw_api.o src/java_raw_api.o
src/closures.o src/x86/ffi.o src/x86/darwin.o src/x86/ffi64.o
src/x86/darwin64.o
libtool: link: ar cru .libs/libffi.a src/debug.o src/prep_cif.o
src/types.o src/raw_api.o src/java_raw_api.o src/closures.o
src/x86/ffi.o src/x86/darwin.o src/x86/ffi64.o src/x86/darwin64.o
/usr/bin/ranlib: file: .libs/libffi.a(raw_api.o) has no symbols
/usr/bin/ranlib: file: .libs/libffi.a(java_raw_api.o) has no symbols
/usr/bin/ranlib: file: .libs/libffi.a(ffi.o) has no symbols
/usr/bin/ranlib: file: .libs/libffi.a(darwin.o) has no symbols
/usr/bin/ranlib: file: .libs/libffi_convenience.a(raw_api.o) has no symbols
/usr/bin/ranlib: file: .libs/libffi_convenience.a(java_raw_api.o) has no
symbols
/usr/bin/ranlib: file: .libs/libffi_convenience.a(ffi.o) has no symbols
/usr/bin/ranlib: file: .libs/libffi_convenience.a(darwin.o) has no symbols
libtool: link: ranlib .libs/libffi.a
libtool: link: ranlib .libs/libffi_convenience.a
ranlib: file: .libs/libffi_convenience.a(raw_api.o) has no symbols
ranlib: file: .libs/libffi_convenience.a(java_raw_api.o) has no symbols
ranlib: file: .libs/libffi_convenience.a(ffi.o) has no symbols
ranlib: file: .libs/libffi_convenience.a(darwin.o) has no symbols
ranlib: file: .libs/libffi.a(raw_api.o) has no symbols
ranlib: file: .libs/libffi.a(java_raw_api.o) has no symbols
ranlib: file: .libs/libffi.a(ffi.o) has no symbols
ranlib: file: .libs/libffi.a(darwin.o) has no symbols
libtool: link: ( cd ".libs" && rm -f "libffi_convenience.la" && ln -s
"../libffi_convenience.la" "libffi_convenience.la" )
libtool: link: ( cd ".libs" && rm -f "libffi.la" && ln -s "../libffi.la"
"libffi.la" )
mkdir -p nanojit
/usr/bin/make libs
jsoplengen.cpp
g++ -DMDCPUCFG=\"md/_darwin.cfg\" -o host_jsoplengen.o -c -fno-rtti
-fno-exceptions -Wall -Wpointer-arith -Woverloaded-virtual -Wsynth
-Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wcast-align
-Wno-invalid-offsetof -Wno-variadic-macros -fno-strict-aliasing
-fpascal-strings -fno-common -pthread -pipe -DNDEBUG -DTRIMMED -O3
-fstrict-aliasing -Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I/opt/local/include/nspr
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsoplengen.cpp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-D dist/sdk/lib
g++ -DMDCPUCFG=\"md/_darwin.cfg\" -o host_jsoplengen -fno-rtti
-fno-exceptions -Wall -Wpointer-arith -Woverloaded-virtual -Wsynth
-Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wcast-align
-Wno-invalid-offsetof -Wno-variadic-macros -fno-strict-aliasing
-fpascal-strings -fno-common -pthread -pipe -DNDEBUG -DTRIMMED -O3
-fstrict-aliasing -Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
host_jsoplengen.o
./host_jsoplengen
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsautooplen.h
jsapi.cpp
g++ -o jsapi.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsapi.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsapi.cpp
jsarena.cpp
g++ -o jsarena.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsarena.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsarena.cpp
jsarray.cpp
g++ -o jsarray.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsarray.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsarray.cpp
jsatom.cpp
g++ -o jsatom.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsatom.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsatom.cpp
jsbool.cpp
g++ -o jsbool.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsbool.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsbool.cpp
jscntxt.cpp
g++ -o jscntxt.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jscntxt.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jscntxt.cpp
jsdate.cpp
g++ -o jsdate.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsdate.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsdate.cpp
jsdbgapi.cpp
g++ -o jsdbgapi.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsdbgapi.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsdbgapi.cpp
jsdhash.cpp
g++ -o jsdhash.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsdhash.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsdhash.cpp
jsdtoa.cpp
g++ -o jsdtoa.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsdtoa.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsdtoa.cpp
jsemit.cpp
g++ -o jsemit.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsemit.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsemit.cpp
jsexn.cpp
g++ -o jsexn.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsexn.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsexn.cpp
jsfun.cpp
g++ -o jsfun.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsfun.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsfun.cpp
jsgc.cpp
g++ -o jsgc.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsgc.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsgc.cpp
jsgcchunk.cpp
g++ -o jsgcchunk.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsgcchunk.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsgcchunk.cpp
jshash.cpp
g++ -o jshash.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jshash.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jshash.cpp
jsinterp.cpp
g++ -o jsinterp.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsinterp.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsinterp.cpp
jsinvoke.cpp
g++ -o jsinvoke.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsinvoke.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsinvoke.cpp
jsiter.cpp
g++ -o jsiter.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsiter.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsiter.cpp
jslock.cpp
g++ -o jslock.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jslock.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jslock.cpp
jslog2.cpp
g++ -o jslog2.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jslog2.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jslog2.cpp
jsmath.cpp
g++ -o jsmath.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsmath.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsmath.cpp
jsnativestack.cpp
g++ -o jsnativestack.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsnativestack.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsnativestack.cpp
jsnum.cpp
g++ -o jsnum.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsnum.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsnum.cpp
jsobj.cpp
g++ -o jsobj.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsobj.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsobj.cpp
json.cpp
g++ -o json.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/json.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/json.cpp
jsopcode.cpp
g++ -o jsopcode.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsopcode.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsopcode.cpp
jsparse.cpp
g++ -o jsparse.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsparse.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsparse.cpp
jsproxy.cpp
g++ -o jsproxy.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsproxy.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsproxy.cpp
jsprf.cpp
g++ -o jsprf.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsprf.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsprf.cpp
jspropertycache.cpp
g++ -o jspropertycache.o -c -fvisibility=hidden
-DOSTYPE=\"Darwin11.1.0\" -DOSARCH=Darwin -DEXPORT_JS_API
-D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES -Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF
.deps/jspropertycache.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jspropertycache.cpp
jspropertytree.cpp
g++ -o jspropertytree.o -c -fvisibility=hidden
-DOSTYPE=\"Darwin11.1.0\" -DOSARCH=Darwin -DEXPORT_JS_API
-D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES -Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF
.deps/jspropertytree.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jspropertytree.cpp
jsregexp.cpp
g++ -o jsregexp.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsregexp.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsregexp.cpp
jsscan.cpp
g++ -o jsscan.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsscan.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsscan.cpp
jsscope.cpp
g++ -o jsscope.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsscope.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsscope.cpp
jsscript.cpp
g++ -o jsscript.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsscript.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsscript.cpp
jsstr.cpp
g++ -o jsstr.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsstr.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsstr.cpp
jstask.cpp
g++ -o jstask.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jstask.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jstask.cpp
jstypedarray.cpp
g++ -o jstypedarray.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jstypedarray.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jstypedarray.cpp
jsutil.cpp
g++ -o jsutil.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsutil.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsutil.cpp
jswrapper.cpp
g++ -o jswrapper.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jswrapper.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jswrapper.cpp
jsxdrapi.cpp
g++ -o jsxdrapi.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsxdrapi.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsxdrapi.cpp
jsxml.cpp
g++ -o jsxml.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsxml.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsxml.cpp
prmjtime.cpp
g++ -o prmjtime.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/prmjtime.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/prmjtime.cpp
jstracer.cpp
g++ -o jstracer.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jstracer.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jstracer.cpp
Assembler.cpp
g++ -o Assembler.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/Assembler.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/Assembler.cpp
Allocator.cpp
g++ -o Allocator.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/Allocator.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/Allocator.cpp
CodeAlloc.cpp
g++ -o CodeAlloc.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/CodeAlloc.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/CodeAlloc.cpp
Containers.cpp
g++ -o Containers.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/Containers.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/Containers.cpp
Fragmento.cpp
g++ -o Fragmento.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/Fragmento.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/Fragmento.cpp
LIR.cpp
g++ -o LIR.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/LIR.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/LIR.cpp
njconfig.cpp
g++ -o njconfig.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/njconfig.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/njconfig.cpp
RegAlloc.cpp
g++ -o RegAlloc.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/RegAlloc.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/RegAlloc.cpp
avmplus.cpp
g++ -o avmplus.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/avmplus.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/avmplus.cpp
NativeX64.cpp
g++ -o NativeX64.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/NativeX64.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/NativeX64.cpp
jsbuiltins.cpp
g++ -o jsbuiltins.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsbuiltins.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsbuiltins.cpp
VMPI.cpp
g++ -o VMPI.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/VMPI.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/VMPI.cpp
CTypes.cpp
g++ -o CTypes.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/CTypes.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/CTypes.cpp
Library.cpp
g++ -o Library.o -c -fvisibility=hidden -DOSTYPE=\"Darwin11.1.0\"
-DOSARCH=Darwin -DEXPORT_JS_API -D__STDC_LIMIT_MACROS -DJS_HAS_CTYPES
-Ictypes/libffi/include -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-I. -I./dist/include -I./dist/include/nsprpub
-I/opt/local/include/nspr
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src
-fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing
-DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/Library.pp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/Library.cpp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/Library.cpp:
In function ‘JSObject* js::ctypes::Library::Create(JSContext*, jsval)’:
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/Library.cpp:91:
warning: NULL used in arithmetic
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/Library.cpp:
In function ‘JSBool js::ctypes::Library::Close(JSContext*, uintN, jsval*)’:
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/Library.cpp:197:
warning: NULL used in arithmetic
rm -f libjs_static.a
ar cr libjs_static.a jsapi.o jsarena.o jsarray.o jsatom.o jsbool.o
jscntxt.o jsdate.o jsdbgapi.o jsdhash.o jsdtoa.o jsemit.o jsexn.o
jsfun.o jsgc.o jsgcchunk.o jshash.o jsinterp.o jsinvoke.o jsiter.o
jslock.o jslog2.o jsmath.o jsnativestack.o jsnum.o jsobj.o json.o
jsopcode.o jsparse.o jsproxy.o jsprf.o jspropertycache.o
jspropertytree.o jsregexp.o jsscan.o jsscope.o jsscript.o jsstr.o
jstask.o jstypedarray.o jsutil.o jswrapper.o jsxdrapi.o jsxml.o
prmjtime.o jstracer.o Assembler.o Allocator.o CodeAlloc.o Containers.o
Fragmento.o LIR.o njconfig.o RegAlloc.o avmplus.o NativeX64.o
jsbuiltins.o VMPI.o CTypes.o Library.o debug.o prep_cif.o types.o
raw_api.o java_raw_api.o closures.o ffi.o darwin.o ffi64.o darwin64.o
/usr/bin/ranlib: file: libjs_static.a(RegAlloc.o) has no symbols
/usr/bin/ranlib: file: libjs_static.a(raw_api.o) has no symbols
/usr/bin/ranlib: file: libjs_static.a(java_raw_api.o) has no symbols
/usr/bin/ranlib: file: libjs_static.a(ffi.o) has no symbols
/usr/bin/ranlib: file: libjs_static.a(darwin.o) has no symbols
ranlib libjs_static.a
ranlib: file: libjs_static.a(RegAlloc.o) has no symbols
ranlib: file: libjs_static.a(raw_api.o) has no symbols
ranlib: file: libjs_static.a(java_raw_api.o) has no symbols
ranlib: file: libjs_static.a(ffi.o) has no symbols
ranlib: file: libjs_static.a(darwin.o) has no symbols
rm -f libmozjs.dylib
Making symlinks to the original object files in the archive libraries
ctypes/libffi/.libs/libffi.a
g++ -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 -fstrict-aliasing -fPIC -o
libmozjs.dylib jsapi.o jsarena.o jsarray.o jsatom.o jsbool.o jscntxt.o
jsdate.o jsdbgapi.o jsdhash.o jsdtoa.o jsemit.o jsexn.o jsfun.o jsgc.o
jsgcchunk.o jshash.o jsinterp.o jsinvoke.o jsiter.o jslock.o jslog2.o
jsmath.o jsnativestack.o jsnum.o jsobj.o json.o jsopcode.o jsparse.o
jsproxy.o jsprf.o jspropertycache.o jspropertytree.o jsregexp.o jsscan.o
jsscope.o jsscript.o jsstr.o jstask.o jstypedarray.o jsutil.o
jswrapper.o jsxdrapi.o jsxml.o prmjtime.o jstracer.o Assembler.o
Allocator.o CodeAlloc.o Containers.o Fragmento.o LIR.o njconfig.o
RegAlloc.o avmplus.o NativeX64.o jsbuiltins.o VMPI.o CTypes.o
Library.o debug.o prep_cif.o types.o raw_api.o java_raw_api.o
closures.o ffi.o darwin.o ffi64.o darwin64.o -lobjc -framework Cocoa
-Wl,-executable_path,/bin -Wl,-dead_strip -L/opt/local/lib/nspr -lplds4
-lplc4 -lnspr4 -L/opt/local/lib -dynamiclib -install_name
@executable_path/libmozjs.dylib -compatibility_version 1
-current_version 1 -single_module
-Wl,-install_name,/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/lib/libmozjs.dylib
-lm -lm
ld: warning: could not create compact unwind for _ffi_call_unix64: does
not use RBP or RSP based frame
chmod +x libmozjs.dylib
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-L
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release
-m 755 libmozjs.dylib ./dist/lib
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-L
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release
-m 755 libmozjs.dylib ./dist/bin
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-L
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release
-m 755 host_jskwgen host_jsoplengen ./dist/host/bin
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-L
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config
-m 755 nsinstall ../dist/host/bin
make[3]: Nothing to be done for `libs'.
g++ -o js -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 js.o jsworkers.o -lobjc
-framework Cocoa -Wl,-executable_path,/bin -Wl,-dead_strip
-L../dist/bin -L../dist/lib -L/opt/local/lib/nspr -lplds4 -lplc4 -lnspr4
-L/opt/local/lib ../editline/libeditline.a ../libjs_static.a
-Wl,-install_name,/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/lib/libmozjs.dylib
-lm -lm
ld: warning: could not create compact unwind for _ffi_call_unix64: does
not use RBP or RSP based frame
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-L
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/shell
-m 755 js ../dist/bin
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-L
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/shell
-m 755 js ..
g++ -o jsapi-tests -fno-rtti -fno-exceptions -Wall -Wpointer-arith
-Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof
-Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common
-pthread -pipe -DNDEBUG -DTRIMMED -O3 tests.o selfTest.o
testClassGetter.o testConservativeGC.o testContexts.o testDebugger.o
testDefineGetterSetterNonEnumerable.o testDefineProperty.o
testExtendedEq.o testGCChunkAlloc.o testIntString.o
testIsAboutToBeFinalized.o testLookup.o testNewObject.o testOps.o
testPropCache.o testTrap.o testSameValue.o testSeal.o testXDR.o
testSetPropertyWithNativeGetterStubSetter.o -lobjc -framework Cocoa
-Wl,-executable_path,/bin -Wl,-dead_strip -L../dist/bin -L../dist/lib
-L/opt/local/lib/nspr -lplds4 -lplc4 -lnspr4 -L/opt/local/lib
../libjs_static.a
-Wl,-install_name,/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/lib/libmozjs.dylib
-lm -lm
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-L
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi-tests
-m 755 jsapi-tests ../dist/bin
make[3]: Nothing to be done for `libs'.
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-L
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release
-m 755 libmozjs.dylib dist/sdk/lib
/usr/bin/make tools
make[3]: Nothing to be done for `tools'.
make[3]: Nothing to be done for `tools'.
make[3]: Nothing to be done for `tools'.
make[3]: Nothing to be done for `tools'.
make[3]: Nothing to be done for `tools'.
if test -d ./dist/bin ; then touch ./dist/bin/.purgecaches ; fi
cd
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release
&& /usr/bin/make -j2
/usr/bin/make export
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-L
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config
nsinstall ../dist/bin
make[4]: Nothing to be done for `export'.
make[4]: Nothing to be done for `export'.
make[4]: Nothing to be done for `export'.
make[4]: Nothing to be done for `export'.
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-L
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release
-m 644 js-config.h jsautocfg.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsautokw.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/js.msg
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsapi.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsarray.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsarena.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsatom.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsbit.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsbool.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsclist.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jscntxt.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jscompat.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsdate.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsdbgapi.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsdhash.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsdtoa.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsemit.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsfun.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsgc.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsgcchunk.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jshash.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsinterp.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsinttypes.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsiter.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jslock.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jslong.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsmath.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsobj.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsobjinlines.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/json.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsopcode.tbl
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsopcode.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsotypes.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsparse.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsproxy.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsprf.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jspropertycache.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jspropertycacheinlines.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jspropertytree.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsproto.tbl
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsprvtd.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jspubtd.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsregexp.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsscan.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsscope.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsscript.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsscriptinlines.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsstaticcheck.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsstr.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jstask.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jstracer.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jstypedarray.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jstypes.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsutil.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsvector.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jstl.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jshashtable.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsversion.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jswrapper.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsxdrapi.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsxml.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/prmjtime.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsbuiltins.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/Assembler.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/Allocator.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/CodeAlloc.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/Containers.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/LIR.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/avmplus.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/Fragmento.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/Native.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/NativeX64.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/njconfig.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/RegAlloc.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/nanojit.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/VMPI.h
./dist/include
/usr/bin/make "AR_FLAGS=" "CC_FOR_BUILD=" "CFLAGS=-g -O2" "CXXFLAGS="
"CFLAGS_FOR_BUILD=" "CFLAGS_FOR_TARGET=" "INSTALL=/usr/bin/install -c"
"INSTALL_DATA=/usr/bin/install -c -m 644"
"INSTALL_PROGRAM=/usr/bin/install -c" "INSTALL_SCRIPT=/usr/bin/install
-c" "JC1FLAGS=" "LDFLAGS=" "LIBCFLAGS=" "LIBCFLAGS_FOR_TARGET="
"MAKE=/usr/bin/make" "MAKEINFO=/bin/sh
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/missing
--run makeinfo " "PICFLAG=" "PICFLAG_FOR_TARGET=" "RUNTESTFLAGS="
"SHELL=/bin/sh" "exec_prefix=/usr/local" "infodir=/usr/local/share/info"
"libdir=/usr/local/lib" "prefix=/usr/local" "AR=ar" "AS=as" "CC=gcc"
"CXX=g++"
"LD=/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld"
"NM=/usr/bin/nm" "RANLIB=ranlib" "DESTDIR=" all-recursive
Making all in include
make[6]: Nothing to be done for `all'.
Making all in testsuite
make[6]: Nothing to be done for `all'.
Making all in man
make[6]: Nothing to be done for `all'.
mkdir -p nanojit
/usr/bin/make libs
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-L
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release
-m 755 libmozjs.dylib ./dist/lib
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-D dist/sdk/lib
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-L
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release
-m 755 libmozjs.dylib ./dist/bin
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-L
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release
-m 755 host_jskwgen host_jsoplengen ./dist/host/bin
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-L
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config
-m 755 nsinstall ../dist/host/bin
make[4]: Nothing to be done for `libs'.
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-L
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/shell
-m 755 js ../dist/bin
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-L
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/shell
-m 755 js ..
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-L
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi-tests
-m 755 jsapi-tests ../dist/bin
make[4]: Nothing to be done for `libs'.
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-L
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release
-m 755 libmozjs.dylib dist/sdk/lib
/usr/bin/make tools
make[4]: Nothing to be done for `tools'.
make[4]: Nothing to be done for `tools'.
make[4]: Nothing to be done for `tools'.
make[4]: Nothing to be done for `tools'.
make[4]: Nothing to be done for `tools'.
if test -d ./dist/bin ; then touch ./dist/bin/.purgecaches ; fi
* Installing Spidermonkey
cd
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release
&& /usr/bin/make -j2 install
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-t js-config.h jsautocfg.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsautokw.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/js.msg
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsapi.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsarray.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsarena.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsatom.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsbit.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsbool.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsclist.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jscntxt.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jscompat.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsdate.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsdbgapi.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsdhash.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsdtoa.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsemit.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsfun.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsgc.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsgcchunk.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jshash.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsinterp.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsinttypes.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsiter.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jslock.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jslong.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsmath.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsobj.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsobjinlines.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/json.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsopcode.tbl
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsopcode.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsotypes.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsparse.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsproxy.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsprf.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jspropertycache.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jspropertycacheinlines.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jspropertytree.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsproto.tbl
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsprvtd.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jspubtd.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsregexp.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsscan.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsscope.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsscript.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsscriptinlines.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsstaticcheck.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsstr.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jstask.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jstracer.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jstypedarray.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jstypes.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsutil.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsvector.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jstl.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jshashtable.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsversion.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jswrapper.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsxdrapi.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsxml.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/prmjtime.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/jsbuiltins.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/Assembler.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/Allocator.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/CodeAlloc.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/Containers.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/LIR.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/avmplus.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/Fragmento.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/Native.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/NativeX64.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/njconfig.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/RegAlloc.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/nanojit.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/nanojit/VMPI.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
rm -f js-config.tmp
sed <
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/js-config.in
> js-config.tmp \
-e
's|@prefix@|/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi|'
\
-e
's|@exec_prefix@|/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi|'
\
-e
's|@includedir@|/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include|'
\
-e
's|@libdir@|/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/lib|'
\
-e 's|@MOZILLA_VERSION@||' \
-e 's|@LIBRARY_NAME@|mozjs|' \
-e 's|@NSPR_CFLAGS@|-I/opt/local/include/nspr|' \
-e 's|@JS_CONFIG_LIBS@|-L/opt/local/lib/nspr -lplds4 -lplc4 -lnspr4
-L/opt/local/lib -dynamiclib -install_name
@executable_path/libmozjs.dylib -compatibility_version 1
-current_version 1 -single_module -lm |' \
-e
's|@MOZ_JS_LIBS@|-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/lib
-lmozjs|' \
&& mv js-config.tmp js-config && chmod +x js-config
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-t js-config
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/bin
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-t libjs_static.a
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/lib
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/config/nsinstall
-t libmozjs.dylib
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/lib

* Building vars.mk

* Building LibFFI

cd
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release
&& /usr/bin/make -j3
/usr/bin/make "AR_FLAGS=" "CC_FOR_BUILD=" "CFLAGS=-g -O2" "CXXFLAGS="
"CFLAGS_FOR_BUILD=" "CFLAGS_FOR_TARGET=" "INSTALL=/usr/bin/install -c"
"INSTALL_DATA=/usr/bin/install -c -m 644"
"INSTALL_PROGRAM=/usr/bin/install -c" "INSTALL_SCRIPT=/usr/bin/install
-c" "JC1FLAGS=" "LDFLAGS=" "LIBCFLAGS=" "LIBCFLAGS_FOR_TARGET="
"MAKE=/usr/bin/make" "MAKEINFO=/bin/sh
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/missing
--run makeinfo " "PICFLAG=" "PICFLAG_FOR_TARGET=" "RUNTESTFLAGS="
"SHELL=/bin/sh"
"exec_prefix=/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install"
"infodir=/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/share/info"
"libdir=/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib"
"prefix=/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install"
"AR=ar" "AS=as" "CC=gcc" "CXX=g++"
"LD=/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld"
"NM=/usr/bin/nm" "RANLIB=ranlib" "DESTDIR=" all-recursive
Making all in include
make[3]: Nothing to be done for `all'.
Making all in testsuite
make[3]: Nothing to be done for `all'.
Making all in man
make[3]: Nothing to be done for `all'.
depbase=`echo src/debug.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/debug.lo -MD -MP -MF $depbase.Tpo
-c -o src/debug.lo
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/debug.c
&&\
mv -f $depbase.Tpo $depbase.Plo
depbase=`echo src/prep_cif.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/prep_cif.lo -MD -MP -MF
$depbase.Tpo -c -o src/prep_cif.lo
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/prep_cif.c
&&\
mv -f $depbase.Tpo $depbase.Plo
depbase=`echo src/types.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/types.lo -MD -MP -MF $depbase.Tpo
-c -o src/types.lo
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/types.c
&&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/types.lo -MD -MP -MF
src/.deps/types.Tpo -c
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/types.c
-fno-common -DPIC -o src/.libs/types.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/debug.lo -MD -MP -MF
src/.deps/debug.Tpo -c
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/debug.c
-fno-common -DPIC -o src/.libs/debug.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/prep_cif.lo -MD -MP -MF
src/.deps/prep_cif.Tpo -c
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/prep_cif.c
-fno-common -DPIC -o src/.libs/prep_cif.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/types.lo -MD -MP -MF
src/.deps/types.Tpo -c
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/types.c
-o src/types.o >/dev/null 2>&1
libtool: compile: gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/prep_cif.lo -MD -MP -MF
src/.deps/prep_cif.Tpo -c
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/prep_cif.c
-o src/prep_cif.o >/dev/null 2>&1
libtool: compile: gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/debug.lo -MD -MP -MF
src/.deps/debug.Tpo -c
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/debug.c
-o src/debug.o >/dev/null 2>&1
depbase=`echo src/raw_api.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/raw_api.lo -MD -MP -MF $depbase.Tpo
-c -o src/raw_api.lo
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/raw_api.c
&&\
mv -f $depbase.Tpo $depbase.Plo
depbase=`echo src/java_raw_api.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/java_raw_api.lo -MD -MP -MF
$depbase.Tpo -c -o src/java_raw_api.lo
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/java_raw_api.c
&&\
mv -f $depbase.Tpo $depbase.Plo
depbase=`echo src/closures.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/closures.lo -MD -MP -MF
$depbase.Tpo -c -o src/closures.lo
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/closures.c
&&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/closures.lo -MD -MP -MF
src/.deps/closures.Tpo -c
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/closures.c
-fno-common -DPIC -o src/.libs/closures.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/raw_api.lo -MD -MP -MF
src/.deps/raw_api.Tpo -c
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/raw_api.c
-fno-common -DPIC -o src/.libs/raw_api.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/java_raw_api.lo -MD -MP -MF
src/.deps/java_raw_api.Tpo -c
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/java_raw_api.c
-fno-common -DPIC -o src/.libs/java_raw_api.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/closures.lo -MD -MP -MF
src/.deps/closures.Tpo -c
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/closures.c
-o src/closures.o >/dev/null 2>&1
depbase=`echo src/x86/ffi64.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/x86/ffi64.lo -MD -MP -MF
$depbase.Tpo -c -o src/x86/ffi64.lo
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/x86/ffi64.c
&&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/raw_api.lo -MD -MP -MF
src/.deps/raw_api.Tpo -c
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/raw_api.c
-o src/raw_api.o >/dev/null 2>&1
libtool: compile: gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/java_raw_api.lo -MD -MP -MF
src/.deps/java_raw_api.Tpo -c
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/java_raw_api.c
-o src/java_raw_api.o >/dev/null 2>&1
libtool: compile: gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/x86/ffi64.lo -MD -MP -MF
src/x86/.deps/ffi64.Tpo -c
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/x86/ffi64.c
-fno-common -DPIC -o src/x86/.libs/ffi64.o
depbase=`echo src/x86/darwin64.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-g -O2 -MT src/x86/darwin64.lo -MD -MP -MF $depbase.Tpo -c -o
src/x86/darwin64.lo
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/x86/darwin64.S
&&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-g -O2 -MT src/x86/darwin64.lo -MD -MP -MF src/x86/.deps/darwin64.Tpo -c
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/x86/darwin64.S
-fno-common -DPIC -o src/x86/.libs/darwin64.o
libtool: compile: gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-g -O2 -MT src/x86/darwin64.lo -MD -MP -MF src/x86/.deps/darwin64.Tpo -c
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/x86/darwin64.S
-o src/x86/darwin64.o >/dev/null 2>&1
libtool: compile: gcc -DHAVE_CONFIG_H -I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi
-I.
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/include
-Iinclude
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src
-Wall -g -fexceptions -g -O2 -MT src/x86/ffi64.lo -MD -MP -MF
src/x86/.deps/ffi64.Tpo -c
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/src/x86/ffi64.c
-o src/x86/ffi64.o >/dev/null 2>&1
/bin/sh ./libtool --tag=CC --mode=link gcc -Wall -g -fexceptions -g
-O2 -version-info `grep -v '^#'
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/libtool-version`
-o libffi.la -rpath
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib
src/debug.lo src/prep_cif.lo src/types.lo src/raw_api.lo
src/java_raw_api.lo src/closures.lo src/x86/ffi.lo
src/x86/darwin.lo src/x86/ffi64.lo src/x86/darwin64.lo
/bin/sh ./libtool --tag=CC --mode=link gcc -Wall -g -fexceptions -g
-O2 -o libffi_convenience.la src/debug.lo src/prep_cif.lo
src/types.lo src/raw_api.lo src/java_raw_api.lo src/closures.lo
src/x86/ffi.lo src/x86/darwin.lo src/x86/ffi64.lo src/x86/darwin64.lo
libtool: link: rm -fr .libs/libffi_convenience.a
.libs/libffi_convenience.la
libtool: link: rm -fr .libs/libffi.5.dylib .libs/libffi.5.dylib.dSYM
.libs/libffi.a .libs/libffi.dylib .libs/libffi.la .libs/libffi.lai
libtool: link: ar cru .libs/libffi_convenience.a src/.libs/debug.o
src/.libs/prep_cif.o src/.libs/types.o src/.libs/raw_api.o
src/.libs/java_raw_api.o src/.libs/closures.o src/x86/.libs/ffi.o
src/x86/.libs/darwin.o src/x86/.libs/ffi64.o src/x86/.libs/darwin64.o
libtool: link: gcc -dynamiclib -Wl,-undefined -Wl,dynamic_lookup -o
.libs/libffi.5.dylib src/.libs/debug.o src/.libs/prep_cif.o
src/.libs/types.o src/.libs/raw_api.o src/.libs/java_raw_api.o
src/.libs/closures.o src/x86/.libs/ffi.o src/x86/.libs/darwin.o
src/x86/.libs/ffi64.o src/x86/.libs/darwin64.o -install_name
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi.5.dylib
-compatibility_version 6 -current_version 6.10 -Wl,-single_module
/usr/bin/ranlib: file: .libs/libffi_convenience.a(ffi.o) has no symbols
/usr/bin/ranlib: file: .libs/libffi_convenience.a(darwin.o) has no symbols
libtool: link: ranlib .libs/libffi_convenience.a
ld: warning: could not create compact unwind for _ffi_call_unix64: does
not use RBP or RSP based frame
ranlib: file: .libs/libffi_convenience.a(ffi.o) has no symbols
ranlib: file: .libs/libffi_convenience.a(darwin.o) has no symbols
libtool: link: dsymutil .libs/libffi.5.dylib || :
libtool: link: ( cd ".libs" && rm -f "libffi_convenience.la" && ln -s
"../libffi_convenience.la" "libffi_convenience.la" )
libtool: link: (cd ".libs" && rm -f "libffi.dylib" && ln -s
"libffi.5.dylib" "libffi.dylib")
libtool: link: ar cru .libs/libffi.a src/debug.o src/prep_cif.o
src/types.o src/raw_api.o src/java_raw_api.o src/closures.o
src/x86/ffi.o src/x86/darwin.o src/x86/ffi64.o src/x86/darwin64.o
/usr/bin/ranlib: file: .libs/libffi.a(ffi.o) has no symbols
/usr/bin/ranlib: file: .libs/libffi.a(darwin.o) has no symbols
libtool: link: ranlib .libs/libffi.a
ranlib: file: .libs/libffi.a(ffi.o) has no symbols
ranlib: file: .libs/libffi.a(darwin.o) has no symbols
libtool: link: ( cd ".libs" && rm -f "libffi.la" && ln -s "../libffi.la"
"libffi.la" )
cd
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release
&& /usr/bin/make -j3
/usr/bin/make "AR_FLAGS=" "CC_FOR_BUILD=" "CFLAGS=-g -O2" "CXXFLAGS="
"CFLAGS_FOR_BUILD=" "CFLAGS_FOR_TARGET=" "INSTALL=/usr/bin/install -c"
"INSTALL_DATA=/usr/bin/install -c -m 644"
"INSTALL_PROGRAM=/usr/bin/install -c" "INSTALL_SCRIPT=/usr/bin/install
-c" "JC1FLAGS=" "LDFLAGS=" "LIBCFLAGS=" "LIBCFLAGS_FOR_TARGET="
"MAKE=/usr/bin/make" "MAKEINFO=/bin/sh
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/missing
--run makeinfo " "PICFLAG=" "PICFLAG_FOR_TARGET=" "RUNTESTFLAGS="
"SHELL=/bin/sh"
"exec_prefix=/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install"
"infodir=/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/share/info"
"libdir=/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib"
"prefix=/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install"
"AR=ar" "AS=as" "CC=gcc" "CXX=g++"
"LD=/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld"
"NM=/usr/bin/nm" "RANLIB=ranlib" "DESTDIR=" all-recursive
Making all in include
make[4]: Nothing to be done for `all'.
Making all in testsuite
make[4]: Nothing to be done for `all'.
Making all in man
make[4]: Nothing to be done for `all'.
* Installing LibFFI
* Installing LibFFI in
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib,

headers in
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/include.
[ -d
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/include
] || mkdir -p
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/include
[ -d
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib
] || mkdir -p
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib
[ -w
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/include
] || echo "**** cannot write to
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/include:
did you forget to read the build instructions?"
[ -w
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib
] || echo "**** cannot write to
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib:
did you forget to read the build instructions?"
[ -w
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/include
] && [ -w
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib
]
[
"/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib"
!= "" ]
cd
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release
&& /usr/bin/make -j3 install
Making install in include
make[4]: Nothing to be done for `install-exec-am'.
test -z
"/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi-3.0.10rc0/include"
||
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/install-sh
-c -d
"/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi-3.0.10rc0/include"
/usr/bin/install -c -m 644 ffi.h ffitarget.h
'/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi-3.0.10rc0/include'
Making install in testsuite
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
Making install in man
make[4]: Nothing to be done for `install-exec-am'.
test -z
"/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/share/man/man3"
||
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/install-sh
-c -d
"/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/share/man/man3"
/usr/bin/install -c -m 644
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/man/ffi.3
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/man/ffi_call.3
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/man/ffi_prep_cif.3
'/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/share/man/man3'
test -z
"/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/share/info"
||
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/install-sh
-c -d
"/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/share/info"
test -z
"/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/pkgconfig"
||
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/install-sh
-c -d
"/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/pkgconfig"
/usr/bin/install -c -m 644 libffi.pc
'/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/pkgconfig'
test -z
"/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib"
||
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/tracemonkey/js/src/ctypes/libffi/install-sh
-c -d
"/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib"
/bin/sh ./libtool --mode=install /usr/bin/install -c libffi.la
'/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib'
libtool: install: /usr/bin/install -c .libs/libffi.5.dylib
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi.5.dylib
libtool: install: (cd
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib
&& { ln -s -f libffi.5.dylib libffi.dylib || { rm -f libffi.dylib && ln
-s libffi.5.dylib libffi.dylib; }; })
libtool: install: /usr/bin/install -c .libs/libffi.lai
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi.la
libtool: install: /usr/bin/install -c .libs/libffi.a
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi.a
libtool: install: chmod 644
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi.a
libtool: install: ranlib
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi.a
ranlib: file:
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi.a(ffi.o)
has no symbols
ranlib: file:
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi.a(darwin.o)
has no symbols
----------------------------------------------------------------------
Libraries have been installed in:

/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `DYLD_LIBRARY_PATH' environment variable
during execution

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------

* Building vars.mk

Done. You may now build GPSEE.

macbook-home-cadorn-net:gpsee cadorn$ make build
* Building dependencies for: gpsee.c gpsee_bytethings.c
gpsee_compile.c gpsee_context_private.c gpsee_datastores.c gpsee_flock.c
gpsee_gccallbacks.c gpsee_hookable_io.c gpsee_lock.c gpsee_modules.c
gpsee_monitors.c gpsee_p2open.c gpsee_realms.c gpsee_unix.c gpsee_util.c
gpsee_version.c gpsee_xdrfile.c
gcc -E -MM -MG -DGPSEE_UNIX_STREAM -D_GNU_SOURCE -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -DMAKEDEPEND gpsee.c gpsee_bytethings.c
gpsee_compile.c gpsee_context_private.c gpsee_datastores.c gpsee_flock.c
gpsee_gccallbacks.c gpsee_hookable_io.c gpsee_lock.c gpsee_modules.c
gpsee_monitors.c gpsee_p2open.c gpsee_realms.c gpsee_unix.c gpsee_util.c
gpsee_version.c gpsee_xdrfile.c > depend.mk
make _build
* Generating gpsee_config.h
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o gpsee.o gpsee.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o gpsee_unix.o gpsee_unix.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o gpsee_lock.o gpsee_lock.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o gpsee_flock.o gpsee_flock.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o gpsee_util.o gpsee_util.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr
-DDEFAULT_LIBEXEC_DIR=\"/opt/local/gpsee/libexec\"
-DDSO_EXTENSION=\"dylib\" -c -o gpsee_modules.o gpsee_modules.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o gpsee_compile.o gpsee_compile.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o gpsee_context_private.o
gpsee_context_private.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o gpsee_xdrfile.o gpsee_xdrfile.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o gpsee_hookable_io.o gpsee_hookable_io.c
gpsee_hookable_io.c:449: warning: ‘hookFileDescriptor’ defined but not used
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o gpsee_datastores.o gpsee_datastores.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o gpsee_monitors.o gpsee_monitors.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o gpsee_realms.o gpsee_realms.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o gpsee_gccallbacks.o gpsee_gccallbacks.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o gpsee_bytethings.o gpsee_bytethings.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o gpsee_p2open.o gpsee_p2open.c
cd modules/gpsee/ && make -f
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/modules.mk
gpsee.a
* Building dependencies for: gpsee.c
gcc -E -MM -MG -D_GNU_SOURCE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -DMAKEDEPEND gpsee.c > depend.mk
cat
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/version.c.in |
sed 's/@@HG_VERSION@@/2d3417f15927 tip/g' > version.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -c version.c -o version.o
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o gpsee.o gpsee.c
ar -ru gpsee.a gpsee.o version.o
ar: creating archive gpsee.a
/usr/bin/ranlib: file: gpsee.a(version.o) has no symbols
ranlib gpsee.a
ranlib: file: gpsee.a(version.o) has no symbols
cd modules/system/ && make -f
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/modules.mk
system.a
* Building dependencies for: environment.c system.c
gcc -E -MM -MG -D_GNU_SOURCE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -DMAKEDEPEND environment.c system.c > depend.mk
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o system.o system.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o environment.o environment.c
ar -ru system.a system.o environment.o
ar: creating archive system.a
ranlib system.a
cd modules/vm/ && make -f
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/modules.mk vm.a
* Building dependencies for: vm.c
gcc -E -MM -MG -D_GNU_SOURCE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -DMAKEDEPEND vm.c > depend.mk
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o vm.o vm.c
ar -ru vm.a vm.o
ar: creating archive vm.a
ranlib vm.a
gcc gpsee_version.c -o gpsee_version
* Generating gpsee-config
chmod 755 gpsee-config
cd modules/binary/ && make -f
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/modules.mk
binary.dylib
* Building dependencies for: BinaryStub.c ByteArray.c ByteString.c
binary.c bytethings.c
gcc -E -MM -MG -D_GNU_SOURCE -include /usr/include/iconv.h
-DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -DMAKEDEPEND BinaryStub.c ByteArray.c
ByteString.c binary.c bytethings.c > depend.mk
cat
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/version.c.in |
sed 's/@@HG_VERSION@@/2d3417f15927 tip/g' > version.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -c version.c -o version.o
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE -include
/usr/include/iconv.h -DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o binary.o binary.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE -include
/usr/include/iconv.h -DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o bytethings.o bytethings.c
bytethings.c: In function ‘transcodeBuf_toBuf’:
bytethings.c:471: warning: format ‘%i’ expects type ‘int’, but argument
4 has type ‘long int’
bytethings.c: In function ‘byteThing_toByteThing’:
bytethings.c:1135: warning: statement with no effect
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE -include
/usr/include/iconv.h -DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o ByteString.o ByteString.c
ByteString.c: In function ‘ByteString_Constructor’:
ByteString.c:259: warning: statement with no effect
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE -include
/usr/include/iconv.h -DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o ByteArray.o ByteArray.c
ByteArray.c: In function ‘ByteArray_Constructor’:
ByteArray.c:234: warning: statement with no effect
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE -include
/usr/include/iconv.h -DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o BinaryStub.o BinaryStub.c
gcc -dynamiclib -undefined dynamic_lookup /usr/lib/libiconv.dylib
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/lib
-L/opt/local/gpsee/lib -o binary.dylib binary.o bytethings.o
ByteString.o ByteArray.o BinaryStub.o version.o
cd modules/cgi/ && make -f
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/modules.mk
cgi.dylib
* Building dependencies for: cgi.c query_object.c
gcc -E -MM -MG -Icgihtml -D_GNU_SOURCE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -DMAKEDEPEND cgi.c query_object.c > depend.mk
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -Icgihtml -D_GNU_SOURCE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o cgi.o cgi.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -Icgihtml -D_GNU_SOURCE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o query_object.o query_object.c
query_object.c:68:2: warning: #warning minor core leak
cd cgihtml && make "CFLAGS=-Wall -Wwrite-strings -Wcast-align
-Wstrict-aliasing=2 -Wwrite-strings -Winline -g -O1 -fPIC"
"CPPFLAGS=-I-Icgihtml -D_GNU_SOURCE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr"
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -I-Icgihtml -D_GNU_SOURCE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o string-lib.o string-lib.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -I-Icgihtml -D_GNU_SOURCE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o cgi-llist.o cgi-llist.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -I-Icgihtml -D_GNU_SOURCE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o cgi-lib.o cgi-lib.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -I-Icgihtml -D_GNU_SOURCE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o html-lib.o html-lib.c
ar cr cgihtml.a string-lib.o cgi-llist.o cgi-lib.o html-lib.o
ranlib cgihtml.a
gcc -dynamiclib -undefined dynamic_lookup
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/lib
-L/opt/local/gpsee/lib -o cgi.dylib cgi.o query_object.o cgihtml/cgihtml.a
cd modules/curses/ && make -f
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/modules.mk
curses.dylib
* Building dependencies for: curses.c curses_Window.c curses_keyboard.c
gcc -E -MM -MG -D_GNU_SOURCE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -DMAKEDEPEND curses.c curses_Window.c
curses_keyboard.c > depend.mk
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o curses.o curses.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o curses_Window.o curses_Window.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o curses_keyboard.o curses_keyboard.c
gcc -dynamiclib -undefined dynamic_lookup -lncurses
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/lib
-L/opt/local/gpsee/lib -o curses.dylib curses.o curses_Window.o
curses_keyboard.o
cd modules/gffi/ && make -f
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/modules.mk
gffi.dylib
* Building dependencies for: CFunction.c CType.c Library.c Memory.c
MutableStruct.c WillFinalize.c defines.c gffi.c std_functions.c
structs.c util.c version.c
gcc -E -MM -MG
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi-3.0.10rc0/include
-D_GNU_SOURCE -include /usr/include/iconv.h
-DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -DMAKEDEPEND CFunction.c CType.c Library.c
Memory.c MutableStruct.c WillFinalize.c defines.c gffi.c std_functions.c
structs.c util.c version.c > depend.mk
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi-3.0.10rc0/include
-g -O1 -fPIC
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-std=gnu99 /usr/lib/libiconv.dylib
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib
-lffi
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/lib
-L/opt/local/gpsee/lib mk_std_cppflags.c -o mk_std_cppflags
* Building std_cppflags.mk
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi-3.0.10rc0/include
-g -O1 -fPIC -D_GNU_SOURCE -include /usr/include/iconv.h
-DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr mk_std_cppflags.c -o mk_std_cppflags
./mk_std_cppflags "STD_CPPFLAGS=-std=gnu99" > std_cppflags.mk
cat
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/version.c.in |
sed 's/@@HG_VERSION@@/2d3417f15927 tip/g' > version.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi-3.0.10rc0/include
-g -O1 -fPIC -c version.c -o version.o
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi-3.0.10rc0/include
-g -O1 -fPIC -D_GNU_SOURCE -include /usr/include/iconv.h
-DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr /usr/lib/libiconv.dylib
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib
-lffi
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/lib
-L/opt/local/gpsee/lib -lffi aux_types.c -o aux_types
./aux_types > aux_types.incl
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi-3.0.10rc0/include
-g -O1 -fPIC -D_GNU_SOURCE -include /usr/include/iconv.h
-DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o gffi.o gffi.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi-3.0.10rc0/include
-g -O1 -fPIC -D_GNU_SOURCE -include /usr/include/iconv.h
-DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o util.o util.c
* Building structs.incl
sed \
-e '/beginStruct/h' \
-e 's/\(beginStruct[(]\)\([^)]*\)\([)].*\)/#define
member_offset(X) offsetOf(\2,X)/' \
-e '/^#define member_offset/p' \
-e 's/member_offset/member_size/' \
-e 's/offsetOf/fieldSize/' \
-e '/member_size/p' \
-e '/member_size/x' \
-e 's/\(beginStruct[(]\)\([^)]*\)\([)].*\)/\1\2,\2\3/' \
-e ':loop' -e 's/\(beginStruct[^,]*,[^ ]*\) /\1_/' -e
'/beginStruct/t loop' \
-e '/endStruct/p' \
-e 's/\(endStruct[(]\)\([^)]*\)\([)].*\)/#undef member_offset/' \
-e '/^#undef member_offset/p' \
-e 's/member_offset/member_size/' \
< structs.decl >> structs.incl
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi-3.0.10rc0/include
-g -O1 -fPIC -D_GNU_SOURCE -include /usr/include/iconv.h
-DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o structs.o structs.c
gcc -E -D_GNU_SOURCE -include /usr/include/iconv.h
-DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -dM - < /dev/null | sed 's/[ ][ ]*/
/g' | LC_COLLATE=C sort -u \
| sed \
-e 's/[[]/[[]/g' -e 's/[]]/[]]/g' \
-e 's/[*]/[*]/g' -e 's/[?]/[?]/g' \
-e 's/[(]/[(]/g' -e 's/[)]/[)]/g' \
-e 's/[.]/[.]/g' \
-e 's/[|]/[|]/g' \
> compiler_dmp.re
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi-3.0.10rc0/include
-g -O1 -fPIC -D_GNU_SOURCE -include /usr/include/iconv.h
-DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-std=gnu99 -D_REENTRANT -D_XOPEN_SOURCE=600 -D_POSIX_SOURCE
-D_POSIX_C_SOURCE=200112L -D_ISOC99_SOURCE -D_ISOC9X_SOURCE
-D_GNU_SOURCE -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o std_macro_consts.o std_macro_consts.c
gcc /usr/lib/libiconv.dylib
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib
-lffi
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/lib
-L/opt/local/gpsee/lib -lffi std_macro_consts.o -o std_macro_consts
./std_macro_consts > std_macro_consts.h

* Generating gpsee_defs.dmp from
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/gpsee.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/gpsee-iconv.h
std_macro_consts.h, found at:
///pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/gpsee-iconv.h

/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/modules/gffi/std_macro_consts.h
///pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/gpsee.h

gcc -E -D_GNU_SOURCE -include /usr/include/iconv.h
-DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -dM
///pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/gpsee-iconv.h
///pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/gpsee.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/modules/gffi/std_macro_consts.h\
| sed 's/[ ][ ]*/ /g' \
| LC_COLLATE=C sort -u \
| egrep -vf compiler_dmp.re \
| egrep -v '^#define *NULL '\
> gpsee_defs.dmp || [ X = X ]
[ -s gpsee_defs.dmp ] || rm gpsee_defs.dmp
[ -f gpsee_defs.dmp ]
* Building gpsee_defs.c
- Integer Expression
egrep: Regular expression too big
- Floating-point Expression
egrep: Regular expression too big
- Strings
- Transitive Macros & Simple Expressions
egrep: Regular expression too big
egrep: Regular expression too big
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi-3.0.10rc0/include
-g -O1 -fPIC -D_GNU_SOURCE -include /usr/include/iconv.h
-DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr /usr/lib/libiconv.dylib
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib
-lffi
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/lib
-L/opt/local/gpsee/lib -lffi gpsee_defs.c -o gpsee_defs

* Generating std_defs.dmp from std_functions.h stdint.h
std_macro_consts.h, found at:
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/modules/gffi/std_functions.h
/usr/include/stdint.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/modules/gffi/std_macro_consts.h

gcc -E -D_GNU_SOURCE -include /usr/include/iconv.h
-DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/modules/gffi
-DGPSEE -I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -std=gnu99 -D_REENTRANT -D_XOPEN_SOURCE=600
-D_POSIX_SOURCE -D_POSIX_C_SOURCE=200112L -D_ISOC99_SOURCE
-D_ISOC9X_SOURCE -D_GNU_SOURCE -std=gnu99 -D_REENTRANT
-D_XOPEN_SOURCE=600 -D_POSIX_SOURCE -D_POSIX_C_SOURCE=200112L
-D_ISOC99_SOURCE -D_ISOC9X_SOURCE -D_GNU_SOURCE -std=gnu99
-D_REENTRANT -D_XOPEN_SOURCE=600 -D_POSIX_SOURCE
-D_POSIX_C_SOURCE=200112L -D_ISOC99_SOURCE -D_ISOC9X_SOURCE
-D_GNU_SOURCE -dM
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/modules/gffi/std_functions.h
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/modules/gffi/std_macro_consts.h
/usr/include/stdint.h\
| sed 's/[ ][ ]*/ /g' \
| LC_COLLATE=C sort -u \
| egrep -vf compiler_dmp.re \
| egrep -v '^#define *NULL '\
> std_defs.dmp || [ X = X ]
[ -s std_defs.dmp ] || rm std_defs.dmp
[ -f std_defs.dmp ]
* Building std_defs.c
- Integer Expression
egrep: Regular expression too big
- Floating-point Expression
egrep: Regular expression too big
- Strings
- Transitive Macros & Simple Expressions
egrep: Regular expression too big
egrep: Regular expression too big
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi-3.0.10rc0/include
-g -O1 -fPIC -D_GNU_SOURCE -include /usr/include/iconv.h
-DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/modules/gffi
-DGPSEE -I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -std=gnu99 -D_REENTRANT -D_XOPEN_SOURCE=600
-D_POSIX_SOURCE -D_POSIX_C_SOURCE=200112L -D_ISOC99_SOURCE
-D_ISOC9X_SOURCE -D_GNU_SOURCE -std=gnu99 -D_REENTRANT
-D_XOPEN_SOURCE=600 -D_POSIX_SOURCE -D_POSIX_C_SOURCE=200112L
-D_ISOC99_SOURCE -D_ISOC9X_SOURCE -D_GNU_SOURCE -c -o std_defs.o std_defs.c
gcc /usr/lib/libiconv.dylib
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib
-lffi
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/lib
-L/opt/local/gpsee/lib -lffi std_defs.o -o std_defs
* Building defines.incl
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi-3.0.10rc0/include
-g -O1 -fPIC -D_GNU_SOURCE -include /usr/include/iconv.h
-DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o defines.o defines.c
* Building std_gpsee_no.h
egrep '^function[(]' function_aliases.incl | sed -e 's/^[^,]*, *//' -e
's/,.*//' -e 's/.*/#define GPSEE_NO_&/' >> std_gpsee_no.h
egrep '^voidfunction[(]' function_aliases.incl | sed -e 's/^[^(]*(//' -e
's/,.*//' -e 's/.*/#define GPSEE_NO_&/' >> std_gpsee_no.h
egrep '^function[(]' unsupported_functions.incl | sed -e 's/.*[(]//' -e
's/[)].*//' -e 's/.*/#define GPSEE_NO_&/' >> std_gpsee_no.h
gcc -E -D_GNU_SOURCE -include /usr/include/iconv.h
-DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-std=gnu99 -D_REENTRANT -D_XOPEN_SOURCE=600 -D_POSIX_SOURCE
-D_POSIX_C_SOURCE=200112L -D_ISOC99_SOURCE -D_ISOC9X_SOURCE
-D_GNU_SOURCE -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -std=gnu99 -D_REENTRANT -D_XOPEN_SOURCE=600
-D_POSIX_SOURCE -D_POSIX_C_SOURCE=200112L -D_ISOC99_SOURCE
-D_ISOC9X_SOURCE -D_GNU_SOURCE -std=gnu99 -D_REENTRANT
-D_XOPEN_SOURCE=600 -D_POSIX_SOURCE -D_POSIX_C_SOURCE=200112L
-D_ISOC99_SOURCE -D_ISOC9X_SOURCE -D_GNU_SOURCE -dM - < std_functions.h
| sed 's/[ ][ ]*/ /g' | egrep '[ ]__builtin_..*$' | \
sed -e 's/^#define //' -e 's/[ (].*//' -e 's/^_*//' -e
's/.*/#define GPSEE_NO_&/' >> std_gpsee_no.h
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi-3.0.10rc0/include
-g -O1 -fPIC -D_GNU_SOURCE -include /usr/include/iconv.h
-DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-std=gnu99 -D_REENTRANT -D_XOPEN_SOURCE=600 -D_POSIX_SOURCE
-D_POSIX_C_SOURCE=200112L -D_ISOC99_SOURCE -D_ISOC9X_SOURCE
-D_GNU_SOURCE -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -std=gnu99 -D_REENTRANT -D_XOPEN_SOURCE=600
-D_POSIX_SOURCE -D_POSIX_C_SOURCE=200112L -D_ISOC99_SOURCE
-D_ISOC9X_SOURCE -D_GNU_SOURCE -c -o std_functions.o std_functions.c
In file included from std_functions.c:73:
unix_api_v3.incl: In function ‘findPreDefFunction’:
unix_api_v3.incl:956: warning: ‘getcontext’ is deprecated (declared at
/usr/include/ucontext.h:37)
unix_api_v3.incl:1526: warning: ‘makecontext’ is deprecated (declared at
/usr/include/ucontext.h:38)
unix_api_v3.incl:2573: warning: ‘setcontext’ is deprecated (declared at
/usr/include/ucontext.h:39)
unix_api_v3.incl:2918: warning: ‘swapcontext’ is deprecated (declared at
/usr/include/ucontext.h:40)
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi-3.0.10rc0/include
-g -O1 -fPIC -D_GNU_SOURCE -include /usr/include/iconv.h
-DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o MutableStruct.o MutableStruct.c
MutableStruct.c:295:2: warning: #warning need immutable struct class
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi-3.0.10rc0/include
-g -O1 -fPIC -D_GNU_SOURCE -include /usr/include/iconv.h
-DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o CFunction.o CFunction.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi-3.0.10rc0/include
-g -O1 -fPIC -D_GNU_SOURCE -include /usr/include/iconv.h
-DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o Memory.o Memory.c
Memory.c: In function ‘Memory_Cast’:
Memory.c:610: warning: pointer targets in assignment differ in signedness
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi-3.0.10rc0/include
-g -O1 -fPIC -D_GNU_SOURCE -include /usr/include/iconv.h
-DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o Library.o Library.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi-3.0.10rc0/include
-g -O1 -fPIC -D_GNU_SOURCE -include /usr/include/iconv.h
-DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o WillFinalize.o WillFinalize.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib/libffi-3.0.10rc0/include
-g -O1 -fPIC -D_GNU_SOURCE -include /usr/include/iconv.h
-DICONV_HEADER=/usr/include/iconv.h
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o CType.o CType.c
gcc -dynamiclib -undefined dynamic_lookup /usr/lib/libiconv.dylib
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib
-lffi
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/lib
-L/opt/local/gpsee/lib -lffi -o gffi.dylib gffi.o util.o structs.o
defines.o std_functions.o MutableStruct.o CFunction.o Memory.o Library.o
WillFinalize.o CType.o version.o
cd modules/shellalike/ && make -f
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/modules.mk
shellalike.dylib
* Building dependencies for: shellalike.c
gcc -E -MM -MG -D_GNU_SOURCE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -DMAKEDEPEND shellalike.c > depend.mk
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o shellalike.o shellalike.c
gcc -dynamiclib -undefined dynamic_lookup
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/lib
-L/opt/local/gpsee/lib -o shellalike.dylib shellalike.o
cd modules/signal/ && make -f
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/modules.mk
signal.dylib
* Building dependencies for: signal.c
gcc -E -MM -MG -D_GNU_SOURCE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -DMAKEDEPEND signal.c > depend.mk
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o signal.o signal.c
signal.c:514:2: warning: #warning "We need a GC callback here to mark
funv as not collectable if Signal falls out of scope and GC runs"
gcc -dynamiclib -undefined dynamic_lookup
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/lib
-L/opt/local/gpsee/lib -o signal.dylib signal.o
cd modules/thread/ && make -f
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/modules.mk
thread.dylib
* Building dependencies for: thread.c
gcc -E -MM -MG -D_GNU_SOURCE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -DMAKEDEPEND thread.c > depend.mk
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o thread.o thread.c
gcc -dynamiclib -undefined dynamic_lookup
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/lib
-L/opt/local/gpsee/lib -o thread.dylib thread.o
gcc -Wall -Wwrite-strings -Wstrict-aliasing=2 -Wwrite-strings -Winline
-g -O1 -fPIC -D_GNU_SOURCE -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -DSYSTEM_GSR="\"/usr/bin/gsr\"" -c -o gsr.o gsr.c
gsr.c:331:4: warning: #warning JS_SetGCZeal not available when building
with this version of SpiderMonkey (try a debug build?)
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -D_GNU_SOURCE -DGPSEE
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-I/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include/js
-I/opt/local/include/nspr -c -o gpsee_precompiler.o gpsee_precompiler.c
cat
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/version.c.in |
sed 's/@@HG_VERSION@@/2d3417f15927 tip/g' > version.c
gcc -Wall -Wwrite-strings -Wcast-align -Wstrict-aliasing=2
-Wwrite-strings -Winline -g -O1 -fPIC -c version.c -o version.o
macbook-home-cadorn-net:gpsee cadorn$ sudo make install
Password:
* Creating target directories
cp -f -rp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/include
/opt/local/gpsee
cp -f -rp
/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/libffi/builds/release/install/lib
/opt/local/gpsee
gcc -dynamiclib -undefined dynamic_lookup
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/lib
-L/opt/local/gpsee/lib /opt/local/gpsee/lib/libmozjs.dylib -lplds4
-lplc4 -lnspr4 -lm -L/opt/local/gpsee/lib -L/opt/local/lib/nspr
-L/opt/local/lib -o /opt/local/gpsee/lib/libgpsee.dylib gpsee.o
gpsee_unix.o gpsee_lock.o gpsee_flock.o gpsee_util.o gpsee_modules.o
gpsee_compile.o gpsee_context_private.o gpsee_xdrfile.o
gpsee_hookable_io.o gpsee_datastores.o gpsee_monitors.o gpsee_realms.o
gpsee_gccallbacks.o gpsee_bytethings.o gpsee_p2open.o
modules/gpsee/gpsee.a modules/system/system.a modules/vm/vm.a version.o
gcc -L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/lib
-L/opt/local/gpsee/lib /opt/local/gpsee/lib/libmozjs.dylib -lplds4
-lplc4 -lnspr4 -lm -L/opt/local/gpsee/lib -L/opt/local/lib/nspr
-L/opt/local/lib gsr.o version.o -lgpsee -o /opt/local/gpsee/bin/gsr
gcc -L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee
-L/pinf/workspaces/github.com/pinf/loader-js/demos/GPSEE/gpsee/spidermonkey/builds/release/jsapi/lib
-L/opt/local/gpsee/lib /opt/local/gpsee/lib/libmozjs.dylib -lplds4
-lplc4 -lnspr4 -lm -L/opt/local/gpsee/lib -L/opt/local/lib/nspr
-L/opt/local/lib gpsee_precompiler.o -lgpsee -o
/opt/local/gpsee/bin/gpsee_precompiler
* Generating gpsee.pc
cp -f gpsee.pc /opt/local/gpsee/lib/pkgconfig/gpsee.pc
* Installing JavaScript module components
cp -f modules/binary/binary.js modules/fs-base/fs-base.js
modules/gffi/gffi.js modules/net/net.js modules/shellalike/shellalike.js
modules/syslog/syslog.js modules/util/util.js modules/xhr/xhr.js
/opt/local/gpsee/libexec
* Precompiling /opt/local/gpsee/libexec/binary.js
* Precompiling /opt/local/gpsee/libexec/fs-base.js
* Precompiling /opt/local/gpsee/libexec/gffi.js
* Precompiling /opt/local/gpsee/libexec/net.js
* Precompiling /opt/local/gpsee/libexec/shellalike.js
* Precompiling /opt/local/gpsee/libexec/syslog.js
* Precompiling /opt/local/gpsee/libexec/util.js
* Precompiling /opt/local/gpsee/libexec/xhr.js
[ -h "/usr/bin/gsr" ] || ln -s "/opt/local/gpsee/bin/gsr" "/usr/bin/gsr"
cp -f gpsee-config /opt/local/gpsee/bin
cp -f modules/binary/binary.dylib modules/cgi/cgi.dylib
modules/curses/curses.dylib modules/gffi/gffi.dylib
modules/shellalike/shellalike.dylib modules/signal/signal.dylib
modules/thread/thread.dylib /opt/local/gpsee/libexec
cp -f gpsee.h gpsee-jsapi.h gpsee_config.h gpsee_lock.c gpsee_flock.h
gpsee_formats.h gpsee-iconv.h gpsee_version.h gpsee_unix.h
/opt/local/gpsee/include
$

Wes Garland

unread,
Sep 20, 2011, 11:18:04 PM9/20/11
to gp...@googlegroups.com
Thanks for pasting all that stuff in, I found the important lines:

 * Building gpsee_defs.c
 - Integer Expression
egrep: Regular expression too big
 - Floating-point Expression
egrep: Regular expression too big
 - Strings
 - Transitive Macros & Simple Expressions
egrep: Regular expression too big
egrep: Regular expression too big


Now I just need to figure out why /usr/bin/egrep it hates my regexps. This is absolutely the problem locus.

Wes

Wes Garland

unread,
Sep 20, 2011, 11:36:13 PM9/20/11
to gp...@googlegroups.com
On 20 September 2011 17:48, Jeff Johnson <n3...@mac.com> wrote:
I haven't seen a list per se: but the Larch project (now known as www.splint.org
and used by splint static annotations) has a de facto set of pre-defined "standard"
constants used in "standard: confromance off in /usr/share/* somewhere. I can fish
them out for if you wish.

Good suggestion - but I just looked and it's GPL-only, so I can't pull their code into GPSEE.
 
But relying on "standards" really doesn't solve any real world problems: you will
need to adapt GOSEE to handle all of Good/Bad/Ugly as found. Otherwise GPSEE
modules will crash-and-burn every new published standard.,

Ah, but therein lies the madness of my ways, I picked my standards and I plan to stick with them! :)  I intend for GFFI to accurately and portably reflect SUSv3 on machines which support it, along with certain SVID interfaces.  After that, the developer is left to himself.  I want Single-UNIX because I know I can use it to reliably build functionality on top of.
 
For "de facto", what is done by perl to create *.ph files, adapted to JS, is likely
the best bet at automatic generation (discussed on #gpsee years ago: I still can't
think of better).

Yeah - I need to do more learning here.  Christoph's problem wound up being a grep which couldn't handle my regexps (too big).  That speaks to the need for a *.ph-like solution.

Wes

--

Jeff Johnson

unread,
Sep 20, 2011, 11:44:44 PM9/20/11
to gp...@googlegroups.com

On Sep 20, 2011, at 11:18 PM, Wes Garland wrote:


Now I just need to figure out why /usr/bin/egrep it hates my regexps. This is absolutely the problem locus.


Hmmm … yes flying spaghetti code.

RPM has a similar problem as GPSEE feeding many constants to bindings
through tables.

The table generation is handled (and rather nicely: I've never had to fix anything) using
a 235 line perl script called rpmh2tbl. The script is a bit better than what is in your
Makefile (imho) because better structured, and in perl: some things are hard to
maintain using standard unix tools.

The "rpmconstant" generator is here:
     cvs -d ":pserver:anon...@rpm5.org:/v/rpm/cvs" get rpm/rpmconstant

Caveats: rpmconstant is pulling out only #define's and enum's, and
RPM's name space is a bit more predictable than what is in /usr/include/*.h.

There's also no provision for accessing structure members with names that
gffi also needs.

I dimly recall some means to use stabs (the original symbolic debugging format)
from years ago to generate something like what your code is doing … lemme
hunt around a bit to see if my memory is accurate.

hth

73 de Jeff



Jeff Johnson

unread,
Sep 21, 2011, 12:13:00 AM9/21/11
to gp...@googlegroups.com
On Sep 20, 2011, at 11:36 PM, Wes Garland wrote:

On 20 September 2011 17:48, Jeff Johnson <n3...@mac.com> wrote:
I haven't seen a list per se: but the Larch project (now known as www.splint.org
and used by splint static annotations) has a de facto set of pre-defined "standard"
constants used in "standard: confromance off in /usr/share/* somewhere. I can fish
them out for if you wish.

Good suggestion - but I just looked and it's GPL-only, so I can't pull their code into GPSEE.

I'm not suggesting pulling code in directly. There are tables with values
that might be processed into JS rather straightforwardly.

These are just "standard" definitions wrapped into C comments using
splint markup (and it might be generated by splint itself: splint is in a better
position to process C defines because it is in fact

Appended is /usr/share/splint/lib/posix.h with lines like

/*@constant mode_t S_IFMT@*/
/*@constant mode_t S_IFBLK@*/
/*@constant mode_t S_IFCHR@*/
/*@constant mode_t S_IFIFO@*/
/*@constant mode_t S_IFREG@*/
/*@constant mode_t S_IFDIR@*/
/*@constant mode_t S_IFLNK@*/

This won't get you the values you actually need, but at least
gives you the POSIX name space.

There's another provision in splint to "freeze" constants/prototypes
into a *.lcd file that is then used to verify static annotations against
that library API without needing to #include anything. Gawd awful format,
but perhaps could be massaged to become input for a JS generator.

And the *.lcd (and perhaps the *.h) aren't code, but rather splint generated output.

 
But relying on "standards" really doesn't solve any real world problems: you will
need to adapt GOSEE to handle all of Good/Bad/Ugly as found. Otherwise GPSEE
modules will crash-and-burn every new published standard.,

Ah, but therein lies the madness of my ways, I picked my standards and I plan to stick with them! :)  I intend for GFFI to accurately and portably reflect SUSv3 on machines which support it, along with certain SVID interfaces.  After that, the developer is left to himself.  I want Single-UNIX because I know I can use it to reliably build functionality on top of.
 

Nothing wrong with SUS except the "standard" does in fact creep on you
as the application needs change.

For "de facto", what is done by perl to create *.ph files, adapted to JS, is likely
the best bet at automatic generation (discussed on #gpsee years ago: I still can't
think of better).

Yeah - I need to do more learning here.  Christoph's problem wound up being a grep which couldn't handle my regexps (too big).  That speaks to the need for a *.ph-like solution.


hth

73 de Jeff


posix.h
Reply all
Reply to author
Forward
0 new messages