diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2009-06-15 22:27:01 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2009-06-15 22:27:01 -0400 |
commit | 0942e7fbe48bfbdb87d9c7c5e0da1c96d68ccb93 (patch) | |
tree | e35991eb7e8ca33a458f7980f2fb5fb95b4d2225 /src/resume.c | |
parent | 942d495dcd12801187076d12e5f7409e8a8aa661 (diff) | |
download | seabios-0942e7fbe48bfbdb87d9c7c5e0da1c96d68ccb93.tar.gz |
Avoid -fwhole-program on broken gcc instead of stopping build.
Enhance build to detect and avoid gcc with broken -fwhole-program
Also, remove workaround for older gcc that mess up global exports.
Diffstat (limited to 'src/resume.c')
-rw-r--r-- | src/resume.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/resume.c b/src/resume.c index 6db6b714..e7d41013 100644 --- a/src/resume.c +++ b/src/resume.c @@ -125,7 +125,3 @@ s3_resume() call16big(&br); } #endif - -// Ughh - some older gcc compilers have a bug which causes VISIBLE32 -// functions to not be exported as global variables. -asm(".global s3_resume"); |