Questions tagged [cross-build]

Cross Build is a piece of software which was created to run on a cross environment such as operation system, browsers, mobile devices, etc.

Cross Build is a piece of software which was created to run on a cross environment such as operation system, browsers, mobile devices, etc.

37 questions
0
votes
1 answer

How do I cross build the latest version of V8 for Raspberry Pi?

I've been trying to cross build V8 for the Raspberry Pi like this: sudo apt-get install gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf g++-multilib-arm-linux-gnueabihf cd ~/ mkdir ~/build/ cd ~/build/ git clone…
Someone13
  • 443
  • 1
  • 6
  • 18
0
votes
1 answer

arm-linux-ar: illegal option -- z

when i want to cross-build libz,there is an error accur,and i search with google,but can't find the answer.Please help me. Also i find a website,but i can't understand this well. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=444727 The…
0
votes
2 answers

How to get linker to report where it is linking to for a given function

I have an issue trying to cross build win32 and win64 exes on a linux host. I am using the mingw cross build toolchains my .c file includes time.h in order to use clock_gettime() in main() now this is a POSIX thing so no guarantee it is windows…
bph
  • 10,728
  • 15
  • 60
  • 135
0
votes
0 answers

OCaml default include directory and default ocamlrun location

I have compiled OCaml from source on my mac (the host), and I have no problem. I have also cross-compiled OCaml on my mac for some target (different from the host) and in this case I have the following issues : 1) I can use directly (on the target)…
Olórin
  • 3,367
  • 2
  • 22
  • 42
0
votes
1 answer

apache2 cross-build failed for arm

On cross-building apache2 2.4.12 I get the following Error during complitation: ptxdist/platform/build-target/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c exports.c && touch exports.lo exports.c:4117:55: error:…
Oliver G.
  • 227
  • 5
  • 17
-1
votes
1 answer

how to tell sbt that which package needs to be compiled based on provided scala version

I am using sbt cross build my project supports two scala versions scala-2.12.8 and scala-2.13.1 and accrodingly i have source code directoroes as src/main/scala_2.12 src/main/test_2.12 src/main/scala_2.13 src/main/test_2.13 i looked at the sbt…
swaheed
  • 3,671
  • 10
  • 42
  • 103
-1
votes
1 answer

Scala: how to build Scala project with cross build alongside different library dependencies

i have an sbt Scala project build on scala 2.13.1 i want to build it with scala-2.12.8 because of some library dependency support only for scala 2.12 after doing some research this question is exactly my use case i followed the answer but i am…
swaheed
  • 3,671
  • 10
  • 42
  • 103
1 2
3