Changes between Version 184 and Version 185 of CompilationGuide/Ubuntu


Ignore:
Timestamp:
Apr 3, 2023, 2:37:58 AM (3 years ago)
Author:
Pierre-Anthony Lemieux
Comment:

Add FAQ on compiling to a 32-bit Ubuntu target on an Ubuntu 64-bit host

Legend:

Unmodified
Added
Removed
Modified
  • CompilationGuide/Ubuntu

    v184 v185  
    477477This is message from libvpx that occasionally makes users think something went wrong. You can ignore this message. It just means `make` is finished doing its work.
    478478
     479== How do I compile to a 32-bit Ubuntu target on an Ubuntu 64-bit host?
     480
     481{{{
     482sudo apt install gcc-multilib
     483./configure --extra-cflags="-m32"  --extra-ldflags="-m32" ...`
     484make clean
     485make
     486}}}
     487
     488
     489
    479490----
    480491