#12248 closed bug (fixed)
[patch] Add host as valid build target to configure's help
Reported by: | idefix | Owned by: | bonefish |
---|---|---|---|
Priority: | low | Milestone: | Unscheduled |
Component: | Build System | Version: | R1/Development |
Keywords: | Cc: | ||
Blocked By: | Blocking: | ||
Platform: | All |
Description
According to HelperRules, host
is also a valid build target. It is needed to build bfs_fuse on Linux.
Attached patch will add this target to the help of configure and also fix a paste error introduced in hrev49029.
Attachments (1)
Change History (5)
by , 9 years ago
Attachment: | 0001-configure-Add-host-as-valid-build-target-in-help.patch added |
---|
comment:1 by , 9 years ago
patch: | 0 → 1 |
---|
comment:2 by , 9 years ago
comment:3 by , 9 years ago
As you can see in the script attached to ticket:6014, both --host-only
and --target=host
are needed.
Only providing --host-only
results in jam segfaulting due to a stack overflow:
jeroen@Gromit:~/Builds/Haiku/host-only/haiku$ ./configure --host-only jeroen@Gromit:~/Builds/Haiku/host-only/haiku$ jam -q "<build>bfs_fuse" Starting build of type regular ... AddHaikuImagePackages: package bash not available! AddHaikuImagePackages: package coreutils not available! AddHaikuImagePackages: package curl not available! AddHaikuImagePackages: package freetype not available! AddHaikuImagePackages: package icu not available! AddHaikuImagePackages: package libsolv not available! AddHaikuImagePackages: package zlib not available! AddHaikuImagePackages: package gcc_syslibs not available! /home/jeroen/Builds/Haiku/host-only/haiku/src/add-ons/kernel/bus_managers/config_manager/arch/Jamfile: No such file or directory /home/jeroen/Builds/Haiku/host-only/haiku/src/add-ons/kernel/bus_managers/isa/arch/Jamfile: No such file or directory /home/jeroen/Builds/Haiku/host-only/haiku/src/add-ons/kernel/bus_managers/pci/arch/Jamfile: No such file or directory Segmentation fault (core dumped) jeroen@Gromit:~/Builds/Haiku/host-only/haiku$
Note:
See TracTickets
for help on using tickets.
I think you want
--host-only
?