File: create_all_options.lua

package info (click to toggle)
efl 1.28.1-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 369,516 kB
  • sloc: ansic: 1,078,016; cpp: 45,806; cs: 21,172; asm: 3,739; python: 3,733; javascript: 3,069; objc: 1,514; sh: 771; pascal: 431; xml: 349; makefile: 88
file content (52 lines) | stat: -rw-r--r-- 1,102 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
options = {
  {"-Dopengl=", "full", "none", "es-egl"},
  {"--buildtype ", "plain", "debug", "release"},
  {"-Devas-modules ", "shared", "static"},
}

concated_options = {}

for i,v in pairs(options) do
  tmp_options = {}

  option_name = v[1]

  for i=2, #v do
    table.insert(tmp_options, option_name..v[i])
  end

  table.insert(concated_options, tmp_options)
end

function permutate(values)
  local permutater = {table.unpack(values[1])}

  if #values == 1 then
    return {table.unpack(values[1])}
  else
    local result = {}
    table.remove(values, 1)
    local list_to_complete = permutate(values)

    for k,v in pairs(list_to_complete) do
      for k_perm,v_perm in pairs(permutater) do
        table.insert(result, v_perm.." "..v)
      end
    end
    return result
  end
end

all_options = permutate(concated_options)

print("GOING TO BUILD ALOT OF EFL")

for k,v in pairs(all_options) do
  cmd = "sh ./scripts/check_options.sh "..v.." "..arg[1]
  exitcode = os.execute(cmd)
  if exitcode ~= true then
    print("command "..cmd.." failed. ")
    print(exitcode)
    os.exit(-1)
  end
end