summaryrefslogtreecommitdiffstats
path: root/make/test
diff options
context:
space:
mode:
authorNomis101 <[email protected]>2019-06-21 10:47:32 +0200
committerDamiano Galassi <[email protected]>2019-06-22 10:57:23 +0200
commit851f6ca16f4d50b87427501bd4647fe695057583 (patch)
tree1f0b8b259693d575f0ee8039bd4954ed10ad2af9 /make/test
parent9b57d44414ca849bfc0b33368b60037852b40edf (diff)
Revert some changes of too extensive gardening
Closes #2155
Diffstat (limited to 'make/test')
-rwxr-xr-xmake/test/build.matrix9
1 files changed, 9 insertions, 0 deletions
diff --git a/make/test/build.matrix b/make/test/build.matrix
index 2304e7a36..70d07445b 100755
--- a/make/test/build.matrix
+++ b/make/test/build.matrix
@@ -112,6 +112,15 @@ end
## create work queue
queue = Queue.new
+## create xcconfig list
+xclist = []
+case
+when RUBY_PLATFORM =~ /darwin11/
+ xclist += 'native osx106.i386 osx106.x86_64 osx107.i386 osx107.x86_64'.split
+when RUBY_PLATFORM =~ /darwin10/
+ xclist += 'native osx106.i386 osx106.x86_64'.split
+end
+
## fill queue
[['release',''],['debug','--debug=max --optimize=none']].each do |debug|
[BuildTerminal, BuildLaunch].each do |kind|