mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-21 15:20:02 +01:00
most veejay users build from source, lets use --with-arch-target=auto to build for their current cpu type. if you don't know what kind of x86 cpu veejay would be running on, run configure with --with-arch-target=generic to set -mtune=generic instead of -march=
This commit is contained in:
@@ -57,9 +57,9 @@ AC_ARG_WITH(pixbuf,
|
|||||||
AC_HELP_STRING([--without-pixbuf], [Do not use GDK pixbuf]),
|
AC_HELP_STRING([--without-pixbuf], [Do not use GDK pixbuf]),
|
||||||
[], [with_pixbuf=yes])
|
[], [with_pixbuf=yes])
|
||||||
|
|
||||||
arch_target="generic"
|
arch_target="auto"
|
||||||
AC_ARG_WITH(arch-target, AS_HELP_STRING( [--with-arch-target=generic or auto],
|
AC_ARG_WITH(arch-target, AS_HELP_STRING( [--with-arch-target=generic or auto],
|
||||||
[Build a generic binary or auto-detect current cpu type]),
|
[Build a generic binary or auto-detect current cpu type (defaults to auto-detect)]),
|
||||||
[ arch_target="$withval"])
|
[ arch_target="$withval"])
|
||||||
|
|
||||||
AC_GNU_SOURCE
|
AC_GNU_SOURCE
|
||||||
|
|||||||
@@ -111,9 +111,9 @@ AC_ARG_WITH(libresample,
|
|||||||
AC_HELP_STRING([--without-libresample], [Do not use libresample.]),
|
AC_HELP_STRING([--without-libresample], [Do not use libresample.]),
|
||||||
[], [with_libresample=yes])
|
[], [with_libresample=yes])
|
||||||
|
|
||||||
arch_target="generic"
|
arch_target="auto"
|
||||||
AC_ARG_WITH(arch-target, AS_HELP_STRING( [--with-arch-target=generic or auto],
|
AC_ARG_WITH(arch-target, AS_HELP_STRING( [--with-arch-target=generic or auto],
|
||||||
[Build a generic binary or auto-detect current cpu type]),
|
[Build a generic binary or auto-detect current cpu type (defaults to auto-detect)]),
|
||||||
[ arch_target="$withval"])
|
[ arch_target="$withval"])
|
||||||
|
|
||||||
AC_GNU_SOURCE
|
AC_GNU_SOURCE
|
||||||
|
|||||||
@@ -59,9 +59,13 @@ If echo is silent, you must set the PKG_CONFIG_PATH to point to the directory co
|
|||||||
Configure options:
|
Configure options:
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
--enable-debug : Builds veejay for debugging purposes (disables optimization)
|
--enable-debug
|
||||||
|
|
||||||
--with-arch-target=auto : Builds veejay for the current cpu-type. The resulting binary may not run on another computer.
|
Builds veejay for debugging purposes (disables optimization)
|
||||||
|
|
||||||
|
--with-arch-target=generic
|
||||||
|
|
||||||
|
Build veejay for generic x86 cpu-type. If the default is used (auto), the resulting binary may not run on another computer.
|
||||||
|
|
||||||
|
|
||||||
Compilation:
|
Compilation:
|
||||||
|
|||||||
Reference in New Issue
Block a user