Skip to content
Snippets Groups Projects
Commit 2791d4cc authored by Cristian Lalescu's avatar Cristian Lalescu
Browse files

use only install compilation flags

parent 6631c752
No related branches found
No related tags found
No related merge requests found
...@@ -125,7 +125,7 @@ class code(base): ...@@ -125,7 +125,7 @@ class code(base):
command_strings = ['g++'] command_strings = ['g++']
command_strings += [self.name + '.cpp', '-o', self.name] command_strings += [self.name + '.cpp', '-o', self.name]
command_strings += ['-O2'] + bfps.install_info['extra_compile_args'] command_strings += bfps.install_info['extra_compile_args']
command_strings += ['-I' + idir for idir in bfps.install_info['include_dirs']] command_strings += ['-I' + idir for idir in bfps.install_info['include_dirs']]
command_strings.append('-I' + bfps.header_dir) command_strings.append('-I' + bfps.header_dir)
command_strings += ['-L' + ldir for ldir in bfps.install_info['library_dirs']] command_strings += ['-L' + ldir for ldir in bfps.install_info['library_dirs']]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment