Advertisement
Guest User

Untitled

a guest
Dec 17th, 2012
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.75 KB | None | 0 0
  1. ## This is the linux configuration file
  2. # This file was adapted to be used with ArchLinux
  3. # Use 'scons -h' to see the list of command line options available
  4.  
  5. # Compiler flags (based on ArchLinux's installation of lua)
  6. #LINKFLAGS = ['-g']
  7. CCFLAGS = ['-I/usr/include/lua5.1', '-O2', '-ansi', '-Wall', '-fPIC']
  8. #CCFLAGS = ['-g']
  9.  
  10. # this is the default directory for installation. Files will be installed on
  11. # <prefix>/bin, <prefix>/lib and <prefix>/include when you run 'scons install'
  12. #
  13. # You can also specify this directory on the command line with the 'prefix'
  14. # option
  15. #
  16. # You can see more 'generic' options for POSIX systems on config_posix.py
  17.  
  18. prefix = '/usr'
  19.  
  20. # libraries (based on ArchLinux's installation of lua)
  21. LIBS = ['lua5.1', 'dl', 'm']
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement