Changeset 37453 for main


Ignore:
Timestamp:
2023-03-10T21:18:43+13:00 (13 months ago)
Author:
anupama
Message:
  1. Wno_error still in the release-kit compile.xml because I can't locate where fPIC is generally set in CFLAGS during GS3 compilation (whether release-kits or not), to add this to that flag in the same location. 2. Minor capitalization in monterey-compile.xml for rk3. Will remove monterey and mojave-compile.xml after confirming the nightlies on Mac generate binaries, generate working binaries and that they generate binaries that work through all the tutorials.
Location:
main/trunk/release-kits/kits/rk3/ant-scripts
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/release-kits/kits/rk3/ant-scripts/compile.xml

    r37449 r37453  
    9999
    100100        <!-- <rsr file="${basedir}/compiled/build.xml" pattern="CFLAGS=&amp;quot;" replacement="CFLAGS=&amp;quot;-fPIC "/> -->
    101         <rsr file="${basedir}/compiled/build.xml" pattern="CFLAGS=&amp;quot;" replacement="CFLAGS=&amp;quot;-Wno-error=implicit-function-declaration "/>
     101        <!-- mac only: make errors about missing extern declarations back into warnings as in old (Mojave and before) macs -->
     102        <if>
     103          <bool><equals arg1="${rk.os}" arg2="mac"/></bool>
     104          <rsr file="${basedir}/compiled/build.xml" pattern="CFLAGS=&amp;quot;" replacement="CFLAGS=&amp;quot;-Wno-error=implicit-function-declaration "/>
     105        </if>
    102106       
    103107        <!-- run greenstone3's ant install and ant dist-tidy -->
  • main/trunk/release-kits/kits/rk3/ant-scripts/monterey-compile.xml

    r37444 r37453  
    1313        </exec>
    1414
    15         <!-- comment out any active checkout.gnomelib.ext=true line in build.properties.svn
     15        <!-- Comment out any active checkout.gnomelib.ext=true line in build.properties.svn
    1616             So that the release-kits go back to behaving how they did when the line
    1717             used to be commented out by default in build properties.
Note: See TracChangeset for help on using the changeset viewer.