1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2025-04-21 12:27:27 +03:00

csound: make some progress

This commit is contained in:
Xiangfu Liu
2011-11-14 16:55:52 +08:00
parent bab2d7511f
commit 75ee508b77
2 changed files with 41 additions and 1 deletions

27
csound/files/custom.py Normal file
View File

@@ -0,0 +1,27 @@
'''
Modify this file, by platform, to handle nonstandard options for third-party
dependencies. If you do modify this file, you should make it read-only
(or otherwise protect it) so that CVS will not overwrite it.
Order is important: place local paths ahead of system paths.
'''
import sys
import os
customCPPPATH = []
customCCFLAGS = []
customCXXFLAGS = []
customLIBS = []
customLIBPATH = []
customSHLINKFLAGS = []
customSWIGFLAGS = []
if sys.platform[:5] == 'linux':
platform = 'linux'
customCPPPATH.append(os.environ['LDFLAGS'])
customCCFLAGS.append(os.environ['CFLAGS'])
customCXXFLAGS.append(os.environ['CFLAGS'])
customLIBPATH.append(os.environ['LDFLAGS'])
else:
platform = 'unsupported platform'