Quellcode durchsuchen

Allow debug symbols to be included when compiling from source- http://wiki.nginx.org/Debugging#Core_dump

master
Ari Aosved vor 9 Jahren
Ursprung
Commit
5ce9ff0c11
1 geänderte Dateien mit 4 neuen und 0 gelöschten Zeilen
  1. +4
    -0
      nginx/source.sls

+ 4
- 0
nginx/source.sls Datei anzeigen

@@ -163,7 +163,11 @@ nginx:
- cwd: {{ nginx_source }}
- names:
- (
{%- if nginx.get('debug_symbols', false) %}
CFLAGS="-g -O0" ./configure --conf-path={{ conf_dir }}/nginx.conf
{%- else %}
./configure --conf-path={{ conf_dir }}/nginx.conf
{%- endif %}
--sbin-path={{ sbin_dir }}/nginx
--user={{ nginx_map.default_user }}
--group={{ nginx_map.default_group }}

Laden…
Abbrechen
Speichern