[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: utility programs used during build
From: |
Warren Turkal |
Subject: |
Re: utility programs used during build |
Date: |
Thu, 15 Jan 2004 05:41:47 -0600 |
User-agent: |
KNode/0.7.2 |
Alexandre Duret-Lutz wrote:
>>>> "Tom" == Tom Tromey <address@hidden> writes:
>
> [...]
>
> Tom> Well, really it might be nice to clean up target library
> Tom> support, but I wouldn't recommend it unless you have a
> Tom> real need; it is pretty messy.
>
> A simple way to support BUILD- and TARGET- compilations (and
> more) could be to support per-target (I'm speaking of Makefile
> targets here) compiler flags.
>
> It can be a bit verbose, especially if the BUILD-tool mixes
> several languages. Here is an example where tool1 would be
> built for BUILD, and tool2 for HOST.
>
> noinst_PROGRAMS = tool1 tool2
> tool1_SOURCES = tool1a.c tool1b.cc
> tool1_CC = $(CC_FOR_BUILD)
> tool1_CXX = $(CXX_FOR_BUILD)
> tool1_LD = $(CXXLD_FOR_BUILD)
> tool2_SOURCES = tool2.c
>
> Just a thought.
This assumes that something sets those variables still (autoconf). Does it
not make sense to have a build_PROGRAMS target supportted internally that
just works for compiling these build targetted binaries? I am picturing the
following.
build_PROGRAMS = genkeysyms
The build programs implies noinst, and the compile gets the proper options
without manually overriding each var manually.
wt
--
Warren Turkal
President, GOLUM, Inc.
http://www.golum.org
- utility programs used during build, Warren Turkal, 2004/01/10
- Re: utility programs used during build, Gary V. Vaughan, 2004/01/13
- Re: utility programs used during build, Tom Tromey, 2004/01/13
- Re: utility programs used during build, Alexandre Duret-Lutz, 2004/01/14
- Re: utility programs used during build,
Warren Turkal <=
- Re: utility programs used during build, Ralf Corsepius, 2004/01/15
- Re: utility programs used during build, Warren Turkal, 2004/01/15
- Re: utility programs used during build, Ralf Corsepius, 2004/01/15
- Re: utility programs used during build, Tom Tromey, 2004/01/16
- Re: utility programs used during build, Ralf Corsepius, 2004/01/16
- Re: utility programs used during build, Warren Turkal, 2004/01/17
- Re: utility programs used during build, Alexandre Duret-Lutz, 2004/01/15