| 695 | flags('gcc', 'FINDLIBS-SA', [], ['rt']) |
| 696 | |
| 697 | def cpu_flags(toolset, variable, architecture, instruction_set, values, default=None): |
| 698 | #FIXME: for some reason this fails. Probably out of date feature code |
| 699 | ## if default: |
| 700 | ## flags(toolset, variable, |
| 701 | ## ['<architecture>' + architecture + '/<instruction-set>'], |
| 702 | ## values) |
| 703 | flags(toolset, variable, |
| 704 | #FIXME: same as above |
| 705 | [##'<architecture>/<instruction-set>' + instruction_set, |
| 706 | '<architecture>' + architecture + '/<instruction-set>' + instruction_set], |
| 707 | values) |
| 708 | |
| 709 | # Set architecture/instruction-set options. |
| 710 | # |