1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
local sets = dofile 'sets.lua'
return {
builddir='out',
fs={
{
sets.core, sets.extra, sets.desktop, sets.devel, sets.media,
exclude={'^include/', '^lib/.*%.a$'},
},
},
target={toolchain='default', cflags='-O2 -pipe -U _FORTIFY_SOURCE', ldflags='-s -static', pie=true},
host={toolchain='default', cflags='-O2 -pipe', ldflags='-s'},
repo={path='$builddir/root.git', flags='--bare', tag='tree', branch='oasis'},
video_drivers={intel=true, nouveau=true},
}
|