I'vde downloaded the V8 ZIP and tried to compile V8 on the Xilinx Zynq (ARM Cortex9) platform. I've tried the following: make dependencies Made a script: #!/bin/sh CROSS_BASE=/opt/Xilinx/14.5/ISE_DS/EDK/gnu/arm/lin PREFIX_BIN=$CROSS_BASE/bin/arm-xilinx-linux-gnueabi export TOOL_PREFIX=$PREFIX_BIN export CXX=$TOOL_PREFIX-g++ export AR=$TOOL_PREFIX-ar export RANLIB=$TOOL_PREFIX-ranlib export CC=$TOOL_PREFIX-gcc export LD=$TOOL_PREFIX-ld Ran the script and then ran: make arm.release -j4 OUTDIR=./my-output-folder The process ends with a linker error: /opt/Xilinx/14.5/ISE_DS/EDK/gnu/arm/lin/bin/arm-xilinx-linux-gnueabi-ld: unrecognized option '-Wl,--start-group' make[1]: *** [/home/oip/Projects/ARES/total/sw_prereq/v8/v8-master/./my-output-folder/arm.release/preparser] Error 1 It's the first time I use GYP, so I don't have a clue on how to fix this issue ... It seems that a compiler flag (-Wl) is passed to the linker: the linker doesn't know this flag though ...
-- -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
