Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

gcc's -fforce-mem option

Tags:

gcc

Does gcc v.4.5.3 still support -fforce-mem option? I'm trying to build the libmad MP3 decoder which uses this option. Googling shows reference to this option, but the online gcc docs don't show it.

like image 569
Scott Avatar asked Dec 24 '12 00:12

Scott


2 Answers

From GCC 4.3 release notes:

The -fforce-mem option has been removed because it has had no effect in the last few GCC releases.

like image 150
perreal Avatar answered Sep 27 '22 21:09

perreal


As perreal mentioned above, the -fforce-mem option no longer works.

To install libmad, use the patch, along with the instructions outlined here

like image 28
puk Avatar answered Sep 27 '22 19:09

puk