On Mar 8, 1:12 pm, "abhinav" <[EMAIL PROTECTED]> wrote:
> The "mozconfig" that i ve got looks like this :
> mk_add_options MOZ_CO_PROJECT=browser
> # Options for 'configure' (same as command-line options).
> CROSS_COMPILE=1
> LIBIDL_CONFIG=/home/radhika/workdir/filesys/usr/bin/libIDL-config-2
> HOST_LIBIDL_CONFIG=/usr/bin/libIDL-config-2
> ac_add_options --enable-application=browser

> When configuring i am passing these arguments to the script
>
> ./configure --build=i386 --host=arm --target=arm

This is wrong. If you're using a mozconfig file, then you actually
need to let the mozconfig file do the work.

that means that --build, --host, --target should be ac_add_options
params

if you insist on having configure run manually you do it as such:

make -f client.mk configure

otherwise, simply do:
make -f client.mk build

and it will deal w/ configuring as necessary.

_______________________________________________
dev-embedding mailing list
[email protected]
https://lists.mozilla.org/listinfo/dev-embedding

Reply via email to