Use CFLAGS and LDFLAGS env vars when building the launcher as well
Fixes #374
This commit is contained in:
parent
fc9980903d
commit
0b1f5209d5
4
setup.py
4
setup.py
@ -486,10 +486,12 @@ def build_linux_launcher(args, launcher_dir='.', for_bundle=False, sh_launcher=F
|
|||||||
cflags.append('-DFOR_LAUNCHER')
|
cflags.append('-DFOR_LAUNCHER')
|
||||||
pylib = get_python_flags(cflags)
|
pylib = get_python_flags(cflags)
|
||||||
exe = 'kitty-profile' if args.profile else 'kitty'
|
exe = 'kitty-profile' if args.profile else 'kitty'
|
||||||
|
cflags += shlex.split(os.environ.get('CFLAGS', ''))
|
||||||
|
ldflags = shlex.split(os.environ.get('LDFLAGS', ''))
|
||||||
cmd = [env.cc] + cflags + [
|
cmd = [env.cc] + cflags + [
|
||||||
'linux-launcher.c', '-o',
|
'linux-launcher.c', '-o',
|
||||||
os.path.join(launcher_dir, exe)
|
os.path.join(launcher_dir, exe)
|
||||||
] + libs + pylib
|
] + ldflags + libs + pylib
|
||||||
run_tool(cmd)
|
run_tool(cmd)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user