Changeset d79763472671a56e2622ce127d959c34b80a45a7
- Timestamp:
- 06/18/00 10:14:25
(8 years ago)
- Author:
- Benoit Steiner <benny@videolan.org>
- git-committer:
- Benoit Steiner <benny@videolan.org> 961316065 +0000
- git-parent:
[3d1104112bebfdd6f1d3201e03da01db54c93bd6]
- git-author:
- Benoit Steiner <benny@videolan.org> 961316065 +0000
- Message:
Le Makefile genere ne gerait pas correctement le mode debug=1
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r08dcf8d |
rd797634 |
|
| 97 | 97 | |
|---|
| 98 | 98 | # Optimizations : don't compile debug versions with them |
|---|
| | 99 | ifeq ($(DEBUG),0) |
|---|
| 99 | 100 | CCFLAGS += -O6 |
|---|
| 100 | 101 | CCFLAGS += -ffast-math -funroll-loops -fargument-noalias-global |
|---|
| … | … | |
| 127 | 128 | endif |
|---|
| 128 | 129 | |
|---|
| | 130 | # End of optimizations |
|---|
| | 131 | endif |
|---|
| | 132 | |
|---|
| 129 | 133 | # |
|---|
| 130 | 134 | # C compiler flags: dependancies |
|---|
| … | … | |
| 144 | 148 | # |
|---|
| 145 | 149 | |
|---|
| 146 | | # Debugging support |
|---|
| 147 | | ifeq ($(DEBUG),1) |
|---|
| 148 | | CFLAGS += -g |
|---|
| | 150 | # Debugging and profiling support |
|---|
| | 151 | ifneq ($(DEBUG),0) |
|---|
| 149 | 152 | CFLAGS += -pg |
|---|
| 150 | 153 | endif |
|---|