Thomas Nagy
a306e30027
docs
2015-10-09 19:32:01 +02:00
Thomas Nagy
1886e77063
Workaround for python-config bug 7352 - Issue 1636
2015-10-09 19:19:59 +02:00
Jérôme Carretero
0f0da92a59
extras: cfg_cross_gnu: fix a typo... again
2015-10-08 16:18:15 -04:00
Thomas Nagy
807a193db6
build_logs disable colors - Issue 1631
2015-10-08 21:57:46 +02:00
Jérôme Carretero
996aca8b8f
extras: cfg_cross_gnu: now use conf.env.env, and also clarify the way envars are gotten
2015-10-06 21:21:14 -04:00
Thomas Nagy
4708b1b730
Workaround for an IronPython pickle bug
2015-10-07 01:11:36 +02:00
Thomas Nagy
acc64df657
IronPython fix for VisualStudio detection
2015-10-07 00:16:11 +02:00
Thomas Nagy
f5b7209b02
Visual Studio detection in IronPython
2015-10-07 00:13:09 +02:00
Thomas Nagy
1fbac668cb
Pass a conf.env.env to check_cfg
2015-10-06 23:06:22 +02:00
Thomas Nagy
061f8e2b1d
With Jython, create a gzip file by default
2015-10-06 22:17:27 +02:00
Thomas Nagy
43aef10ebf
Enable waf file builds with Jython
2015-10-06 22:06:19 +02:00
Jérôme Carretero
5e7a7794c3
extras: cfg_cross_gnu: fixup typsdqdo
2015-10-06 10:27:19 -04:00
Jérôme Carretero
8da42b9365
extras: cfg_cross_gnu: improve environment variable passing
...
Changes:
- Can pass environment variables in the form `i686_pc_linux_gnu_AR`...
Dash didn't work...
- Use PKG_CONFIG_LIBDIR only if available
2015-10-05 15:34:30 -04:00
Thomas Nagy
b970bfcb2d
docs
2015-10-03 11:54:22 +02:00
Thomas Nagy
a6b467d73e
Moved the command hashing logic into a utility function
2015-10-03 09:12:08 +02:00
ita1024
c9d68d9ff0
Merge pull request #1630 from shoover/playground
...
playground/c: update bld methods. Use write_config_header for variants…
2015-10-03 08:31:36 +02:00
Thomas Nagy
201b8ac38f
Enable rules mixing functions with scriptlets
2015-10-01 19:25:29 +02:00
Shawn Hoover
b0b773335c
playground/c: update bld methods. Use write_config_header for variants so
...
cleanall doesn't delete them.
2015-09-30 23:34:08 -04:00
Thomas Nagy
0e76f676be
Let compile_fun process lists of string commands
2015-09-30 23:38:33 +02:00
Thomas Nagy
f45e5c9d6e
Python 3 syntax cleanup
2015-09-28 21:44:50 +02:00
Thomas Nagy
1205f92a7f
Simplify the unicode type test for python 3
2015-09-28 21:33:48 +02:00
Thomas Nagy
c6f98f80db
Sphinx 'default' html theme has been renamed to 'classic'
2015-09-27 16:49:41 +02:00
Thomas Nagy
7cba550826
Fixed a few Python3 compatibility issues in extras modules
2015-09-27 16:09:21 +02:00
Thomas Nagy
f9f5e85616
Indentation issues
2015-09-22 07:08:21 +02:00
Thomas Nagy
9625343f91
docs
2015-09-20 12:26:21 +02:00
Thomas Nagy
cf92a7bd24
waf 1.8.14
2015-09-20 12:18:01 +02:00
Thomas Nagy
ce8234c396
docs - Issue 1605
2015-09-20 12:13:43 +02:00
Thomas Nagy
dbdc95dfb6
The meaning of filter differs in Python 2/3 - Fixed MSVC builds without lazy for Python 3
2015-09-20 12:03:27 +02:00
Thomas Nagy
ef72d4657f
Tests
2015-09-20 11:42:20 +02:00
Thomas Nagy
8ba068670a
Enable vala processing on a folder basis with the vala_dir parameter - Issue 1601
2015-09-19 19:53:46 +02:00
Thomas Nagy
7c982f1999
Missing configuration line for demos/vala/ to enable resource processing
2015-09-19 17:12:04 +02:00
Thomas Nagy
19042c840e
clean up in demos/vala
2015-09-19 17:01:03 +02:00
Thomas Nagy
8ea1de44a7
Vala resources - Issue 1626
2015-09-19 09:53:53 +02:00
Thomas Nagy
80d26d5dab
docs
2015-09-13 22:45:56 +02:00
Mohammad Alsaleh
6de1ac07d5
c_config: Avoid warnings/errors when checking for C functions
...
The check for C functions fails with '-Werror' in GCC (5.2).
return (int)p;
^
The cast here triggers this error:
error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast]
p=(void*)(%s);
^
This conversion triggers another error with '-pedantic -Werror':
error: ISO C forbids conversion of function pointer to object pointer type [-Werror=pedantic]
This patch fixes both errors.
Signed-off-by: Mohammad Alsaleh <CE.Mohammad.AlSaleh@gmail.com>
2015-09-13 22:45:32 +02:00
Thomas Nagy
c5952e19ab
waf 1.8.13
2015-09-13 22:14:31 +02:00
Thomas Nagy
002706431d
docs
2015-09-12 23:49:38 +02:00
Thomas Nagy
49f51d547b
Missing change -Kpic/-xcode=pic32 for sun compilers in c++ mode
2015-09-12 23:32:39 +02:00
ita1024
58bb1ae87c
Merge pull request #1625 from che2/fix-suncc-pic-flag
...
Update the pic build flag used for Sun CC
2015-09-12 23:30:41 +02:00
Chen He
411672c069
Update the pic build flag used for Sun CC
...
`-Kpic` had been used to generate position-indenpendent code for Sun CC.
This permits only 2^10 unqiue symbols per shared object on 64-bit
systems. This is an unreasonably small default. Switching to `-KPIC`
increases the number to 2^29.
According to
http://docs.oracle.com/cd/E37069_01/html/E37074/bjapp.html#OSSCGbjatt ,
both `-Kpic` and `-KPIC` have been deprecated, and the `-xcode` option
should be used instead. `-xcode` has been available since at least Sun
Studio 8.
2015-09-10 10:37:40 -04:00
ita1024
b01ae4d98c
Merge pull request #1624 from shoover/consolidate-mobile-targets
...
Consolidate mobile targets
2015-09-09 23:00:05 +02:00
ita1024
8652c0b9da
Merge pull request #1623 from shoover/no-save-lazy-targets
...
Don't save MSVC_INSTALLED_VERSIONS for lazy detection
2015-09-09 22:57:53 +02:00
Shawn Hoover
c376be6f61
Fix duplicate winphone 8.0 targets in the detected versions list.
2015-09-09 12:31:09 -04:00
Shawn Hoover
a8480cc2ff
Fix to consolidate WinCE versions in the compiler versions list.
2015-09-09 12:30:23 -04:00
Shawn Hoover
eb18a77a5f
Override lazy detection and save MSVC_INSTALLED_VERSIONS if get_msvc_versions is called directly.
2015-09-09 10:52:23 -04:00
Shawn Hoover
b00b9ab4e3
Don't save/print MSVC_INSTALLED_VERSIONS for lazy detection.
2015-09-09 10:52:20 -04:00
Thomas Nagy
48e48babb4
Override rule function outputs - Issue 1598
2015-09-07 21:03:16 +02:00
Thomas Nagy
7cca5e060f
Broken configurations may leave stale variables
2015-09-03 23:34:34 +02:00
Thomas Nagy
c2f4f1b1e8
Force a chmod value for configuration tests executed
2015-09-03 21:31:46 +02:00
Thomas Nagy
eb13629bda
clang seems to provide llvm-ar
2015-09-03 20:58:47 +02:00