Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add simple cross compile mechanism for flisp/libsupport (+ dependencies) #30526

Merged
merged 5 commits into from
Jul 2, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Undo the manifest change
  • Loading branch information
Keno committed Jul 1, 2019
commit 428d87d72e5b5b4964f5f36814904b3ac085dd8a
5 changes: 2 additions & 3 deletions deps/tools/common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ endif


## PATHS ##

# sort is used to remove potential duplicates
DIRS := $(sort $(build_bindir) $(build_depsbindir) $(build_libdir) $(build_includedir) $(build_sysconfdir) $(build_datarootdir) $(build_staging) $(build_prefix)/manifest)

Expand Down Expand Up @@ -172,8 +171,8 @@ $$(build_staging)/$2.tgz: $$(BUILDDIR)/$2/build-compiled
rm -rf $$(build_staging)/$2
mv $$@.tmp $$@

$$(build_prefix)/manifest/$(strip $1): $$(build_staging)/$2.tgz
mkdir -p $$(build_prefix)/manifest
$$(build_prefix)/manifest/$(strip $1): $$(build_staging)/$2.tgz | $(build_prefix)/manifest
mkdir -p $$(build_prefix)
$(UNTAR) $$< -C $$(build_prefix)
$6
echo $2 > $$@
Expand Down