Changeset 281 for trunk/SConstruct
- Timestamp:
- 06/06/15 19:16:56 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SConstruct
r280 r281 4 4 from regfi_version import REGFI_VERSION 5 5 6 # Package Maintainers: should any of these options be omitted during package 7 # build, instead relying on CFLAGS/LDFLAGS to specify them when appropriate? 6 8 cflags = '-std=gnu99 -pedantic -Wall -D_FILE_OFFSET_BITS=64 -fvisibility=hidden' 7 9 cflags += ' -DREGFI_VERSION=\'"%s"\' ' % REGFI_VERSION … … 10 12 linkflags = "-shared -fPIC -Wl,-soname,libregfi.so.%s " % REGFI_VERSION 11 13 linkflags += os.environ.get('LDFLAGS','-z relro -z now') 14 12 15 13 16 lib_src = ['lib/regfi.c', … … 70 73 env.AddPostAction(libinstall, 'ldconfig') 71 74 75 # Package Maintainers: Do you need more control over these next two sections? 72 76 install_pyregfi = [] 73 77 if sys.version_info[0] == 2: … … 85 89 'python/pyregfi/winsec.py'], 86 90 "python3 setup.py install --root=/%s | tee pyregfi3-install.log" % destdir) 91 87 92 88 93 # API documentation
Note: See TracChangeset
for help on using the changeset viewer.