You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.7 KiB
48 lines
1.7 KiB
# --- SDE-COPYRIGHT-NOTE-BEGIN --- |
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|
# |
|
# Filename: package/.../luajit/luajit.conf |
|
# Copyright (C) 2011 - 2012 The OpenSDE Project |
|
# |
|
# More information can be found in the files COPYING and README. |
|
# |
|
# This program is free software; you can redistribute it and/or modify |
|
# it under the terms of the GNU General Public License as published by |
|
# the Free Software Foundation; version 2 of the License. A copy of the |
|
# GNU General Public License can be found in the file COPYING. |
|
# --- SDE-COPYRIGHT-NOTE-END --- |
|
|
|
# saving our local patches and empty the patchfiles variable |
|
localpatches=$patchfiles |
|
patchfiles= |
|
|
|
# append official patches |
|
for x in `match_source_file -p 'patch'` ; do |
|
var_append patchfiles " " "$x" |
|
done |
|
|
|
# append our local patches |
|
var_append patchfiles " " "$localpatches" |
|
|
|
# for binary distributions it is recommended to use the special target for an |
|
# amalgamated build which compiles the LuaJIT core as one huge C file and |
|
# allows GCC to generate faster and shorter code |
|
makeopt='amalg' |
|
|
|
# By default, modules are only searched under the prefix /usr/local. You can |
|
# add an extra prefix to the search paths by appending the PREFIX option. |
|
var_append makeopt ' ' "PREFIX=/$prefix" |
|
|
|
if ! atstage native; then |
|
var_append makeopt ' ' 'TARGET_SYS=Linux' |
|
# FIXME: don't hardcode HOST_CC this way |
|
var_append makeopt ' ' "HOST_CC='$HOST_CC -m32'" |
|
var_append makeopt ' ' "CROSS=$arch_target-" |
|
|
|
var_append makeopt ' ' "DESTDIR=$root" |
|
fi |
|
|
|
makeinstopt="${makeopt/amalg/install}" |
|
|
|
# beta releases only install the LuaJIT executable under the versioned name |
|
hook_add postmake 5 "ln -sf luajit-$ver $root$bindir/luajit"
|
|
|